]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/list_lru.h
memcg: free memcg_caches slot on css offline
[mirror_ubuntu-bionic-kernel.git] / include / linux / list_lru.h
CommitLineData
a38e4082
DC
1/*
2 * Copyright (c) 2013 Red Hat, Inc. and Parallels Inc. All rights reserved.
3 * Authors: David Chinner and Glauber Costa
4 *
5 * Generic LRU infrastructure
6 */
7#ifndef _LRU_LIST_H
8#define _LRU_LIST_H
9
10#include <linux/list.h>
3b1d58a4 11#include <linux/nodemask.h>
503c358c 12#include <linux/shrinker.h>
a38e4082 13
60d3fd32
VD
14struct mem_cgroup;
15
a38e4082
DC
16/* list_lru_walk_cb has to always return one of those */
17enum lru_status {
18 LRU_REMOVED, /* item removed from list */
449dd698
JW
19 LRU_REMOVED_RETRY, /* item removed, but lock has been
20 dropped and reacquired */
a38e4082
DC
21 LRU_ROTATE, /* item referenced, give another pass */
22 LRU_SKIP, /* item cannot be locked, skip */
23 LRU_RETRY, /* item not freeable. May drop the lock
24 internally, but has to return locked. */
25};
26
60d3fd32 27struct list_lru_one {
a38e4082
DC
28 struct list_head list;
29 /* kept as signed so we can catch imbalance bugs */
30 long nr_items;
60d3fd32
VD
31};
32
33struct list_lru_memcg {
34 /* array of per cgroup lists, indexed by memcg_cache_id */
35 struct list_lru_one *lru[0];
36};
37
38struct list_lru_node {
39 /* protects all lists on the node, including per cgroup */
40 spinlock_t lock;
41 /* global list, used for the root cgroup in cgroup aware lrus */
42 struct list_lru_one lru;
43#ifdef CONFIG_MEMCG_KMEM
44 /* for cgroup aware lrus points to per cgroup lists, otherwise NULL */
45 struct list_lru_memcg *memcg_lrus;
46#endif
3b1d58a4
DC
47} ____cacheline_aligned_in_smp;
48
49struct list_lru {
5ca302c8 50 struct list_lru_node *node;
c0a5b560
VD
51#ifdef CONFIG_MEMCG_KMEM
52 struct list_head list;
53#endif
a38e4082
DC
54};
55
5ca302c8 56void list_lru_destroy(struct list_lru *lru);
60d3fd32
VD
57int __list_lru_init(struct list_lru *lru, bool memcg_aware,
58 struct lock_class_key *key);
59
60#define list_lru_init(lru) __list_lru_init((lru), false, NULL)
61#define list_lru_init_key(lru, key) __list_lru_init((lru), false, (key))
62#define list_lru_init_memcg(lru) __list_lru_init((lru), true, NULL)
63
64int memcg_update_all_list_lrus(int num_memcgs);
a38e4082
DC
65
66/**
67 * list_lru_add: add an element to the lru list's tail
68 * @list_lru: the lru pointer
69 * @item: the item to be added.
70 *
71 * If the element is already part of a list, this function returns doing
72 * nothing. Therefore the caller does not need to keep state about whether or
73 * not the element already belongs in the list and is allowed to lazy update
74 * it. Note however that this is valid for *a* list, not *this* list. If
75 * the caller organize itself in a way that elements can be in more than
76 * one type of list, it is up to the caller to fully remove the item from
77 * the previous list (with list_lru_del() for instance) before moving it
78 * to @list_lru
79 *
80 * Return value: true if the list was updated, false otherwise
81 */
82bool list_lru_add(struct list_lru *lru, struct list_head *item);
83
84/**
85 * list_lru_del: delete an element to the lru list
86 * @list_lru: the lru pointer
87 * @item: the item to be deleted.
88 *
89 * This function works analogously as list_lru_add in terms of list
90 * manipulation. The comments about an element already pertaining to
91 * a list are also valid for list_lru_del.
92 *
93 * Return value: true if the list was updated, false otherwise
94 */
95bool list_lru_del(struct list_lru *lru, struct list_head *item);
96
97/**
60d3fd32 98 * list_lru_count_one: return the number of objects currently held by @lru
a38e4082 99 * @lru: the lru pointer.
6a4f496f 100 * @nid: the node id to count from.
60d3fd32 101 * @memcg: the cgroup to count from.
a38e4082
DC
102 *
103 * Always return a non-negative number, 0 for empty lists. There is no
104 * guarantee that the list is not updated while the count is being computed.
105 * Callers that want such a guarantee need to provide an outer lock.
106 */
60d3fd32
VD
107unsigned long list_lru_count_one(struct list_lru *lru,
108 int nid, struct mem_cgroup *memcg);
6a4f496f 109unsigned long list_lru_count_node(struct list_lru *lru, int nid);
503c358c
VD
110
111static inline unsigned long list_lru_shrink_count(struct list_lru *lru,
112 struct shrink_control *sc)
113{
60d3fd32 114 return list_lru_count_one(lru, sc->nid, sc->memcg);
503c358c
VD
115}
116
6a4f496f
GC
117static inline unsigned long list_lru_count(struct list_lru *lru)
118{
119 long count = 0;
120 int nid;
121
ff0b67ef 122 for_each_node_state(nid, N_NORMAL_MEMORY)
6a4f496f
GC
123 count += list_lru_count_node(lru, nid);
124
125 return count;
126}
a38e4082
DC
127
128typedef enum lru_status
129(*list_lru_walk_cb)(struct list_head *item, spinlock_t *lock, void *cb_arg);
130/**
60d3fd32 131 * list_lru_walk_one: walk a list_lru, isolating and disposing freeable items.
a38e4082 132 * @lru: the lru pointer.
6a4f496f 133 * @nid: the node id to scan from.
60d3fd32 134 * @memcg: the cgroup to scan from.
a38e4082
DC
135 * @isolate: callback function that is resposible for deciding what to do with
136 * the item currently being scanned
137 * @cb_arg: opaque type that will be passed to @isolate
138 * @nr_to_walk: how many items to scan.
139 *
140 * This function will scan all elements in a particular list_lru, calling the
141 * @isolate callback for each of those items, along with the current list
142 * spinlock and a caller-provided opaque. The @isolate callback can choose to
143 * drop the lock internally, but *must* return with the lock held. The callback
144 * will return an enum lru_status telling the list_lru infrastructure what to
145 * do with the object being scanned.
146 *
147 * Please note that nr_to_walk does not mean how many objects will be freed,
148 * just how many objects will be scanned.
149 *
150 * Return value: the number of objects effectively removed from the LRU.
151 */
60d3fd32
VD
152unsigned long list_lru_walk_one(struct list_lru *lru,
153 int nid, struct mem_cgroup *memcg,
154 list_lru_walk_cb isolate, void *cb_arg,
155 unsigned long *nr_to_walk);
6a4f496f
GC
156unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
157 list_lru_walk_cb isolate, void *cb_arg,
158 unsigned long *nr_to_walk);
159
503c358c
VD
160static inline unsigned long
161list_lru_shrink_walk(struct list_lru *lru, struct shrink_control *sc,
162 list_lru_walk_cb isolate, void *cb_arg)
163{
60d3fd32
VD
164 return list_lru_walk_one(lru, sc->nid, sc->memcg, isolate, cb_arg,
165 &sc->nr_to_scan);
503c358c
VD
166}
167
6a4f496f
GC
168static inline unsigned long
169list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate,
170 void *cb_arg, unsigned long nr_to_walk)
171{
172 long isolated = 0;
173 int nid;
174
ff0b67ef 175 for_each_node_state(nid, N_NORMAL_MEMORY) {
6a4f496f
GC
176 isolated += list_lru_walk_node(lru, nid, isolate,
177 cb_arg, &nr_to_walk);
178 if (nr_to_walk <= 0)
179 break;
180 }
181 return isolated;
182}
a38e4082 183#endif /* _LRU_LIST_H */