]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/shrinker.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[mirror_ubuntu-bionic-kernel.git] / include / linux / shrinker.h
CommitLineData
b0d40c92
DC
1#ifndef _LINUX_SHRINKER_H
2#define _LINUX_SHRINKER_H
3
4/*
5 * This struct is used to pass information from page reclaim to the shrinkers.
6 * We consolidate the values for easier extention later.
24f7c6b9
DC
7 *
8 * The 'gfpmask' refers to the allocation we are currently trying to
9 * fulfil.
b0d40c92
DC
10 */
11struct shrink_control {
12 gfp_t gfp_mask;
13
a0b02131
DC
14 /*
15 * How many objects scan_objects should scan and try to reclaim.
16 * This is reset before every call, so it is safe for callees
17 * to modify.
18 */
b0d40c92 19 unsigned long nr_to_scan;
0ce3d744 20
d460acb5
CW
21 /*
22 * How many objects did scan_objects process?
23 * This defaults to nr_to_scan before every call, but the callee
24 * should track its actual progress.
25 */
26 unsigned long nr_scanned;
27
1d3d4437
GC
28 /* current node being shrunk (for NUMA aware shrinkers) */
29 int nid;
cb731d6c
VD
30
31 /* current memcg being shrunk (for memcg aware shrinkers) */
32 struct mem_cgroup *memcg;
b0d40c92
DC
33};
34
24f7c6b9 35#define SHRINK_STOP (~0UL)
b0d40c92
DC
36/*
37 * A callback you can register to apply pressure to ageable caches.
38 *
24f7c6b9
DC
39 * @count_objects should return the number of freeable items in the cache. If
40 * there are no objects to free or the number of freeable items cannot be
41 * determined, it should return 0. No deadlock checks should be done during the
42 * count callback - the shrinker relies on aggregating scan counts that couldn't
43 * be executed due to potential deadlocks to be run at a later call when the
44 * deadlock condition is no longer pending.
b0d40c92 45 *
24f7c6b9
DC
46 * @scan_objects will only be called if @count_objects returned a non-zero
47 * value for the number of freeable objects. The callout should scan the cache
48 * and attempt to free items from the cache. It should then return the number
49 * of objects freed during the scan, or SHRINK_STOP if progress cannot be made
50 * due to potential deadlocks. If SHRINK_STOP is returned, then no further
51 * attempts to call the @scan_objects will be made from the current reclaim
52 * context.
1d3d4437
GC
53 *
54 * @flags determine the shrinker abilities, like numa awareness
b0d40c92
DC
55 */
56struct shrinker {
24f7c6b9
DC
57 unsigned long (*count_objects)(struct shrinker *,
58 struct shrink_control *sc);
59 unsigned long (*scan_objects)(struct shrinker *,
60 struct shrink_control *sc);
61
b0d40c92
DC
62 int seeks; /* seeks to recreate an obj */
63 long batch; /* reclaim batch size, 0 = default */
1d3d4437 64 unsigned long flags;
b0d40c92
DC
65
66 /* These are for internal use */
67 struct list_head list;
1d3d4437
GC
68 /* objs pending delete, per node */
69 atomic_long_t *nr_deferred;
b0d40c92
DC
70};
71#define DEFAULT_SEEKS 2 /* A good number if you don't know better. */
1d3d4437
GC
72
73/* Flags */
cb731d6c
VD
74#define SHRINKER_NUMA_AWARE (1 << 0)
75#define SHRINKER_MEMCG_AWARE (1 << 1)
1d3d4437
GC
76
77extern int register_shrinker(struct shrinker *);
b0d40c92
DC
78extern void unregister_shrinker(struct shrinker *);
79#endif