2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
8 * This file is part of the SPL, Solaris Porting Layer.
10 * The SPL is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
15 * The SPL is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * You should have received a copy of the GNU General Public License along
21 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
24 #ifndef _SPL_SHRINKER_H
25 #define _SPL_SHRINKER_H
31 * Due to frequent changes in the shrinker API the following
32 * compatibility wrappers should be used. They are as follows:
34 * SPL_SHRINKER_DECLARE(varname, countfunc, scanfunc, seek_cost);
36 * SPL_SHRINKER_DECLARE is used to declare a shrinker with the name varname,
37 * which is passed to spl_register_shrinker()/spl_unregister_shrinker().
38 * The countfunc returns the number of free-able objects.
39 * The scanfunc returns the number of objects that were freed.
40 * The callbacks can return SHRINK_STOP if further calls can't make any more
41 * progress. Note that a return value of SHRINK_EMPTY is currently not
46 * static unsigned long
47 * my_count(struct shrinker *shrink, struct shrink_control *sc)
49 * ...calculate number of objects in the cache...
51 * return (number of objects in the cache);
54 * static unsigned long
55 * my_scan(struct shrinker *shrink, struct shrink_control *sc)
57 * ...scan objects in the cache and reclaim them...
60 * SPL_SHRINKER_DECLARE(my_shrinker, my_count, my_scan, DEFAULT_SEEKS);
62 * void my_init_func(void) {
63 * spl_register_shrinker(&my_shrinker);
67 #define spl_register_shrinker(x) register_shrinker(x)
68 #define spl_unregister_shrinker(x) unregister_shrinker(x)
71 * Linux 3.0 to 3.11 Shrinker API Compatibility.
73 #if defined(HAVE_SINGLE_SHRINKER_CALLBACK)
74 #define SPL_SHRINKER_DECLARE(varname, countfunc, scanfunc, seek_cost) \
76 __ ## varname ## _wrapper(struct shrinker *shrink, struct shrink_control *sc)\
78 if (sc->nr_to_scan != 0) { \
79 (void) scanfunc(shrink, sc); \
81 return (countfunc(shrink, sc)); \
84 static struct shrinker varname = { \
85 .shrink = __ ## varname ## _wrapper, \
89 #define SHRINK_STOP (-1)
92 * Linux 3.12 and later Shrinker API Compatibility.
94 #elif defined(HAVE_SPLIT_SHRINKER_CALLBACK)
95 #define SPL_SHRINKER_DECLARE(varname, countfunc, scanfunc, seek_cost) \
96 static struct shrinker varname = { \
97 .count_objects = countfunc, \
98 .scan_objects = scanfunc, \
104 * Linux 2.x to 2.6.22, or a newer shrinker API has been introduced.
106 #error "Unknown shrinker callback"
109 #endif /* SPL_SHRINKER_H */