mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-27 19:39:35 +03:00
b545b07b2f
Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de> Signed-off-by: Rob Norris <robn@despairlabs.com> Closes #16479
78 lines
2.2 KiB
C
78 lines
2.2 KiB
C
/*
|
|
* Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
* Copyright (C) 2007 The Regents of the University of California.
|
|
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
* Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
|
* UCRL-CODE-235197
|
|
*
|
|
* This file is part of the SPL, Solaris Porting Layer.
|
|
*
|
|
* The SPL is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* The SPL is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Solaris Porting Layer (SPL) Shrinker Implementation.
|
|
*/
|
|
|
|
#include <sys/kmem.h>
|
|
#include <sys/shrinker.h>
|
|
|
|
struct shrinker *
|
|
spl_register_shrinker(const char *name, spl_shrinker_cb countfunc,
|
|
spl_shrinker_cb scanfunc, int seek_cost)
|
|
{
|
|
struct shrinker *shrinker;
|
|
|
|
/* allocate shrinker */
|
|
#ifdef HAVE_SHRINKER_REGISTER
|
|
/* 6.7: kernel will allocate the shrinker for us */
|
|
shrinker = shrinker_alloc(0, name);
|
|
#else
|
|
/* 4.4-6.6: we allocate the shrinker */
|
|
shrinker = kmem_zalloc(sizeof (struct shrinker), KM_SLEEP);
|
|
#endif
|
|
|
|
if (shrinker == NULL)
|
|
return (NULL);
|
|
|
|
/* set callbacks */
|
|
shrinker->count_objects = countfunc;
|
|
shrinker->scan_objects = scanfunc;
|
|
|
|
/* set params */
|
|
shrinker->seeks = seek_cost;
|
|
|
|
/* register with kernel */
|
|
#if defined(HAVE_SHRINKER_REGISTER)
|
|
shrinker_register(shrinker);
|
|
#elif defined(HAVE_REGISTER_SHRINKER_VARARG)
|
|
register_shrinker(shrinker, name);
|
|
#else
|
|
register_shrinker(shrinker);
|
|
#endif
|
|
|
|
return (shrinker);
|
|
}
|
|
EXPORT_SYMBOL(spl_register_shrinker);
|
|
|
|
void
|
|
spl_unregister_shrinker(struct shrinker *shrinker)
|
|
{
|
|
#if defined(HAVE_SHRINKER_REGISTER)
|
|
shrinker_free(shrinker);
|
|
#else
|
|
unregister_shrinker(shrinker);
|
|
kmem_free(shrinker, sizeof (struct shrinker));
|
|
#endif
|
|
}
|
|
EXPORT_SYMBOL(spl_unregister_shrinker);
|