blob: fcfb6c89ed4777f46cb09f173c79719c3dbb46b9 [file] [log] [blame]
Dave Chinnera38e4082013-08-28 10:17:58 +10001/*
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#include <linux/kernel.h>
8#include <linux/module.h>
Dave Chinner3b1d58a2013-08-28 10:18:00 +10009#include <linux/mm.h>
Dave Chinnera38e4082013-08-28 10:17:58 +100010#include <linux/list_lru.h>
Glauber Costa5ca302c2013-08-28 10:18:18 +100011#include <linux/slab.h>
Vladimir Davydovc0a5b562015-02-12 14:59:07 -080012#include <linux/mutex.h>
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080013#include <linux/memcontrol.h>
Vladimir Davydovc0a5b562015-02-12 14:59:07 -080014
Johannes Weiner127424c2016-01-20 15:02:32 -080015#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydovc0a5b562015-02-12 14:59:07 -080016static LIST_HEAD(list_lrus);
17static DEFINE_MUTEX(list_lrus_mutex);
18
19static void list_lru_register(struct list_lru *lru)
20{
21 mutex_lock(&list_lrus_mutex);
22 list_add(&lru->list, &list_lrus);
23 mutex_unlock(&list_lrus_mutex);
24}
25
26static void list_lru_unregister(struct list_lru *lru)
27{
28 mutex_lock(&list_lrus_mutex);
29 list_del(&lru->list);
30 mutex_unlock(&list_lrus_mutex);
31}
32#else
33static void list_lru_register(struct list_lru *lru)
34{
35}
36
37static void list_lru_unregister(struct list_lru *lru)
38{
39}
Johannes Weiner127424c2016-01-20 15:02:32 -080040#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Dave Chinnera38e4082013-08-28 10:17:58 +100041
Johannes Weiner127424c2016-01-20 15:02:32 -080042#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080043static inline bool list_lru_memcg_aware(struct list_lru *lru)
44{
Raghavendra K T145949a2015-11-05 18:46:26 -080045 /*
46 * This needs node 0 to be always present, even
47 * in the systems supporting sparse numa ids.
48 */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080049 return !!lru->node[0].memcg_lrus;
50}
51
52static inline struct list_lru_one *
53list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
54{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070055 struct list_lru_memcg *memcg_lrus;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080056 /*
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070057 * Either lock or RCU protects the array of per cgroup lists
58 * from relocation (see memcg_update_list_lru_node).
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080059 */
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070060 memcg_lrus = rcu_dereference_check(nlru->memcg_lrus,
61 lockdep_is_held(&nlru->lock));
62 if (memcg_lrus && idx >= 0)
63 return memcg_lrus->lru[idx];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080064 return &nlru->lru;
65}
66
Vladimir Davydovdf406552015-11-05 18:49:04 -080067static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
68{
69 struct page *page;
70
71 if (!memcg_kmem_enabled())
72 return NULL;
73 page = virt_to_head_page(ptr);
74 return page->mem_cgroup;
75}
76
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080077static inline struct list_lru_one *
78list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
79{
80 struct mem_cgroup *memcg;
81
82 if (!nlru->memcg_lrus)
83 return &nlru->lru;
84
85 memcg = mem_cgroup_from_kmem(ptr);
86 if (!memcg)
87 return &nlru->lru;
88
89 return list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
90}
91#else
92static inline bool list_lru_memcg_aware(struct list_lru *lru)
93{
94 return false;
95}
96
97static inline struct list_lru_one *
98list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
99{
100 return &nlru->lru;
101}
102
103static inline struct list_lru_one *
104list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
105{
106 return &nlru->lru;
107}
Johannes Weiner127424c2016-01-20 15:02:32 -0800108#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800109
Dave Chinnera38e4082013-08-28 10:17:58 +1000110bool list_lru_add(struct list_lru *lru, struct list_head *item)
111{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000112 int nid = page_to_nid(virt_to_page(item));
113 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800114 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000115
116 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000117 if (list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700118 l = list_lru_from_kmem(nlru, item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800119 list_add_tail(item, &l->list);
120 l->nr_items++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700121 nlru->nr_items++;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000122 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000123 return true;
124 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000125 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000126 return false;
127}
128EXPORT_SYMBOL_GPL(list_lru_add);
129
130bool list_lru_del(struct list_lru *lru, struct list_head *item)
131{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000132 int nid = page_to_nid(virt_to_page(item));
133 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800134 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000135
136 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000137 if (!list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700138 l = list_lru_from_kmem(nlru, item);
Dave Chinnera38e4082013-08-28 10:17:58 +1000139 list_del_init(item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800140 l->nr_items--;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700141 nlru->nr_items--;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000142 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000143 return true;
144 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000145 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000146 return false;
147}
148EXPORT_SYMBOL_GPL(list_lru_del);
149
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800150void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
151{
152 list_del_init(item);
153 list->nr_items--;
154}
155EXPORT_SYMBOL_GPL(list_lru_isolate);
156
157void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
158 struct list_head *head)
159{
160 list_move(item, head);
161 list->nr_items--;
162}
163EXPORT_SYMBOL_GPL(list_lru_isolate_move);
164
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800165static unsigned long __list_lru_count_one(struct list_lru *lru,
166 int nid, int memcg_idx)
Dave Chinnera38e4082013-08-28 10:17:58 +1000167{
Glauber Costa6a4f4962013-08-28 10:18:02 +1000168 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800169 struct list_lru_one *l;
170 unsigned long count;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000171
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700172 rcu_read_lock();
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800173 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800174 count = l->nr_items;
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700175 rcu_read_unlock();
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000176
177 return count;
178}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800179
180unsigned long list_lru_count_one(struct list_lru *lru,
181 int nid, struct mem_cgroup *memcg)
182{
183 return __list_lru_count_one(lru, nid, memcg_cache_id(memcg));
184}
185EXPORT_SYMBOL_GPL(list_lru_count_one);
186
187unsigned long list_lru_count_node(struct list_lru *lru, int nid)
188{
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700189 struct list_lru_node *nlru;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800190
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700191 nlru = &lru->node[nid];
192 return nlru->nr_items;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800193}
Glauber Costa6a4f4962013-08-28 10:18:02 +1000194EXPORT_SYMBOL_GPL(list_lru_count_node);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000195
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800196static unsigned long
197__list_lru_walk_one(struct list_lru *lru, int nid, int memcg_idx,
198 list_lru_walk_cb isolate, void *cb_arg,
199 unsigned long *nr_to_walk)
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000200{
201
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800202 struct list_lru_node *nlru = &lru->node[nid];
203 struct list_lru_one *l;
Dave Chinnera38e4082013-08-28 10:17:58 +1000204 struct list_head *item, *n;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000205 unsigned long isolated = 0;
Dave Chinnera38e4082013-08-28 10:17:58 +1000206
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000207 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800208 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Dave Chinnera38e4082013-08-28 10:17:58 +1000209restart:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800210 list_for_each_safe(item, n, &l->list) {
Dave Chinnera38e4082013-08-28 10:17:58 +1000211 enum lru_status ret;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000212
213 /*
214 * decrement nr_to_walk first so that we don't livelock if we
215 * get stuck on large numbesr of LRU_RETRY items
216 */
Russell Kingc56b0972013-10-30 14:16:16 +0000217 if (!*nr_to_walk)
Dave Chinner5cedf7212013-08-28 10:18:01 +1000218 break;
Russell Kingc56b0972013-10-30 14:16:16 +0000219 --*nr_to_walk;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000220
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800221 ret = isolate(item, l, &nlru->lock, cb_arg);
Dave Chinnera38e4082013-08-28 10:17:58 +1000222 switch (ret) {
Johannes Weiner449dd692014-04-03 14:47:56 -0700223 case LRU_REMOVED_RETRY:
224 assert_spin_locked(&nlru->lock);
Gustavo A. R. Silva5b568ac2017-11-15 17:38:49 -0800225 /* fall through */
Dave Chinnera38e4082013-08-28 10:17:58 +1000226 case LRU_REMOVED:
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000227 isolated++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700228 nlru->nr_items--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700229 /*
230 * If the lru lock has been dropped, our list
231 * traversal is now invalid and so we have to
232 * restart from scratch.
233 */
234 if (ret == LRU_REMOVED_RETRY)
235 goto restart;
Dave Chinnera38e4082013-08-28 10:17:58 +1000236 break;
237 case LRU_ROTATE:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800238 list_move_tail(item, &l->list);
Dave Chinnera38e4082013-08-28 10:17:58 +1000239 break;
240 case LRU_SKIP:
241 break;
242 case LRU_RETRY:
Dave Chinner5cedf7212013-08-28 10:18:01 +1000243 /*
244 * The lru lock has been dropped, our list traversal is
245 * now invalid and so we have to restart from scratch.
246 */
Johannes Weiner449dd692014-04-03 14:47:56 -0700247 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000248 goto restart;
249 default:
250 BUG();
251 }
Dave Chinnera38e4082013-08-28 10:17:58 +1000252 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000253
254 spin_unlock(&nlru->lock);
255 return isolated;
256}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800257
258unsigned long
259list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
260 list_lru_walk_cb isolate, void *cb_arg,
261 unsigned long *nr_to_walk)
262{
263 return __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
264 isolate, cb_arg, nr_to_walk);
265}
266EXPORT_SYMBOL_GPL(list_lru_walk_one);
267
268unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
269 list_lru_walk_cb isolate, void *cb_arg,
270 unsigned long *nr_to_walk)
271{
272 long isolated = 0;
273 int memcg_idx;
274
275 isolated += __list_lru_walk_one(lru, nid, -1, isolate, cb_arg,
276 nr_to_walk);
277 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
278 for_each_memcg_cache_index(memcg_idx) {
279 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
280 isolate, cb_arg, nr_to_walk);
281 if (*nr_to_walk <= 0)
282 break;
283 }
284 }
285 return isolated;
286}
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000287EXPORT_SYMBOL_GPL(list_lru_walk_node);
288
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800289static void init_one_lru(struct list_lru_one *l)
290{
291 INIT_LIST_HEAD(&l->list);
292 l->nr_items = 0;
293}
294
Johannes Weiner127424c2016-01-20 15:02:32 -0800295#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800296static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
297 int begin, int end)
298{
299 int i;
300
301 for (i = begin; i < end; i++)
302 kfree(memcg_lrus->lru[i]);
303}
304
305static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
306 int begin, int end)
307{
308 int i;
309
310 for (i = begin; i < end; i++) {
311 struct list_lru_one *l;
312
313 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
314 if (!l)
315 goto fail;
316
317 init_one_lru(l);
318 memcg_lrus->lru[i] = l;
319 }
320 return 0;
321fail:
322 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1);
323 return -ENOMEM;
324}
325
326static int memcg_init_list_lru_node(struct list_lru_node *nlru)
327{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700328 struct list_lru_memcg *memcg_lrus;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800329 int size = memcg_nr_cache_ids;
330
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700331 memcg_lrus = kvmalloc(sizeof(*memcg_lrus) +
332 size * sizeof(void *), GFP_KERNEL);
333 if (!memcg_lrus)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800334 return -ENOMEM;
335
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700336 if (__memcg_init_list_lru_node(memcg_lrus, 0, size)) {
337 kvfree(memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800338 return -ENOMEM;
339 }
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700340 RCU_INIT_POINTER(nlru->memcg_lrus, memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800341
342 return 0;
343}
344
345static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
346{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700347 struct list_lru_memcg *memcg_lrus;
348 /*
349 * This is called when shrinker has already been unregistered,
350 * and nobody can use it. So, there is no need to use kvfree_rcu().
351 */
352 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus, true);
353 __memcg_destroy_list_lru_node(memcg_lrus, 0, memcg_nr_cache_ids);
354 kvfree(memcg_lrus);
355}
356
357static void kvfree_rcu(struct rcu_head *head)
358{
359 struct list_lru_memcg *mlru;
360
361 mlru = container_of(head, struct list_lru_memcg, rcu);
362 kvfree(mlru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800363}
364
365static int memcg_update_list_lru_node(struct list_lru_node *nlru,
366 int old_size, int new_size)
367{
368 struct list_lru_memcg *old, *new;
369
370 BUG_ON(old_size > new_size);
371
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700372 old = rcu_dereference_protected(nlru->memcg_lrus,
373 lockdep_is_held(&list_lrus_mutex));
374 new = kvmalloc(sizeof(*new) + new_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800375 if (!new)
376 return -ENOMEM;
377
378 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700379 kvfree(new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800380 return -ENOMEM;
381 }
382
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700383 memcpy(&new->lru, &old->lru, old_size * sizeof(void *));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800384
385 /*
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700386 * The locking below allows readers that hold nlru->lock avoid taking
387 * rcu_read_lock (see list_lru_from_memcg_idx).
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800388 *
389 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
390 * we have to use IRQ-safe primitives here to avoid deadlock.
391 */
392 spin_lock_irq(&nlru->lock);
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700393 rcu_assign_pointer(nlru->memcg_lrus, new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800394 spin_unlock_irq(&nlru->lock);
395
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700396 call_rcu(&old->rcu, kvfree_rcu);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800397 return 0;
398}
399
400static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
401 int old_size, int new_size)
402{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700403 struct list_lru_memcg *memcg_lrus;
404
405 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus,
406 lockdep_is_held(&list_lrus_mutex));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800407 /* do not bother shrinking the array back to the old size, because we
408 * cannot handle allocation failures here */
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700409 __memcg_destroy_list_lru_node(memcg_lrus, old_size, new_size);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800410}
411
412static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
413{
414 int i;
415
Raghavendra K T145949a2015-11-05 18:46:26 -0800416 if (!memcg_aware)
417 return 0;
418
419 for_each_node(i) {
420 if (memcg_init_list_lru_node(&lru->node[i]))
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800421 goto fail;
422 }
423 return 0;
424fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800425 for (i = i - 1; i >= 0; i--) {
426 if (!lru->node[i].memcg_lrus)
427 continue;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800428 memcg_destroy_list_lru_node(&lru->node[i]);
Raghavendra K T145949a2015-11-05 18:46:26 -0800429 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800430 return -ENOMEM;
431}
432
433static void memcg_destroy_list_lru(struct list_lru *lru)
434{
435 int i;
436
437 if (!list_lru_memcg_aware(lru))
438 return;
439
Raghavendra K T145949a2015-11-05 18:46:26 -0800440 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800441 memcg_destroy_list_lru_node(&lru->node[i]);
442}
443
444static int memcg_update_list_lru(struct list_lru *lru,
445 int old_size, int new_size)
446{
447 int i;
448
449 if (!list_lru_memcg_aware(lru))
450 return 0;
451
Raghavendra K T145949a2015-11-05 18:46:26 -0800452 for_each_node(i) {
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800453 if (memcg_update_list_lru_node(&lru->node[i],
454 old_size, new_size))
455 goto fail;
456 }
457 return 0;
458fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800459 for (i = i - 1; i >= 0; i--) {
460 if (!lru->node[i].memcg_lrus)
461 continue;
462
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800463 memcg_cancel_update_list_lru_node(&lru->node[i],
464 old_size, new_size);
Raghavendra K T145949a2015-11-05 18:46:26 -0800465 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800466 return -ENOMEM;
467}
468
469static void memcg_cancel_update_list_lru(struct list_lru *lru,
470 int old_size, int new_size)
471{
472 int i;
473
474 if (!list_lru_memcg_aware(lru))
475 return;
476
Raghavendra K T145949a2015-11-05 18:46:26 -0800477 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800478 memcg_cancel_update_list_lru_node(&lru->node[i],
479 old_size, new_size);
480}
481
482int memcg_update_all_list_lrus(int new_size)
483{
484 int ret = 0;
485 struct list_lru *lru;
486 int old_size = memcg_nr_cache_ids;
487
488 mutex_lock(&list_lrus_mutex);
489 list_for_each_entry(lru, &list_lrus, list) {
490 ret = memcg_update_list_lru(lru, old_size, new_size);
491 if (ret)
492 goto fail;
493 }
494out:
495 mutex_unlock(&list_lrus_mutex);
496 return ret;
497fail:
498 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
499 memcg_cancel_update_list_lru(lru, old_size, new_size);
500 goto out;
501}
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800502
503static void memcg_drain_list_lru_node(struct list_lru_node *nlru,
504 int src_idx, int dst_idx)
505{
506 struct list_lru_one *src, *dst;
507
508 /*
509 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
510 * we have to use IRQ-safe primitives here to avoid deadlock.
511 */
512 spin_lock_irq(&nlru->lock);
513
514 src = list_lru_from_memcg_idx(nlru, src_idx);
515 dst = list_lru_from_memcg_idx(nlru, dst_idx);
516
517 list_splice_init(&src->list, &dst->list);
518 dst->nr_items += src->nr_items;
519 src->nr_items = 0;
520
521 spin_unlock_irq(&nlru->lock);
522}
523
524static void memcg_drain_list_lru(struct list_lru *lru,
525 int src_idx, int dst_idx)
526{
527 int i;
528
529 if (!list_lru_memcg_aware(lru))
530 return;
531
Raghavendra K T145949a2015-11-05 18:46:26 -0800532 for_each_node(i)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800533 memcg_drain_list_lru_node(&lru->node[i], src_idx, dst_idx);
534}
535
536void memcg_drain_all_list_lrus(int src_idx, int dst_idx)
537{
538 struct list_lru *lru;
539
540 mutex_lock(&list_lrus_mutex);
541 list_for_each_entry(lru, &list_lrus, list)
542 memcg_drain_list_lru(lru, src_idx, dst_idx);
543 mutex_unlock(&list_lrus_mutex);
544}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800545#else
546static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
547{
548 return 0;
549}
550
551static void memcg_destroy_list_lru(struct list_lru *lru)
552{
553}
Johannes Weiner127424c2016-01-20 15:02:32 -0800554#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800555
556int __list_lru_init(struct list_lru *lru, bool memcg_aware,
557 struct lock_class_key *key)
Dave Chinnera38e4082013-08-28 10:17:58 +1000558{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000559 int i;
Glauber Costa5ca302c2013-08-28 10:18:18 +1000560 size_t size = sizeof(*lru->node) * nr_node_ids;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800561 int err = -ENOMEM;
562
563 memcg_get_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000564
565 lru->node = kzalloc(size, GFP_KERNEL);
566 if (!lru->node)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800567 goto out;
Dave Chinnera38e4082013-08-28 10:17:58 +1000568
Raghavendra K T145949a2015-11-05 18:46:26 -0800569 for_each_node(i) {
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000570 spin_lock_init(&lru->node[i].lock);
Johannes Weiner449dd692014-04-03 14:47:56 -0700571 if (key)
572 lockdep_set_class(&lru->node[i].lock, key);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800573 init_one_lru(&lru->node[i].lru);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000574 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800575
576 err = memcg_init_list_lru(lru, memcg_aware);
577 if (err) {
578 kfree(lru->node);
Alexander Polakov1bc11d72016-10-27 17:46:27 -0700579 /* Do this so a list_lru_destroy() doesn't crash: */
580 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800581 goto out;
582 }
583
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800584 list_lru_register(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800585out:
586 memcg_put_cache_ids();
587 return err;
Dave Chinnera38e4082013-08-28 10:17:58 +1000588}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800589EXPORT_SYMBOL_GPL(__list_lru_init);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000590
591void list_lru_destroy(struct list_lru *lru)
592{
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800593 /* Already destroyed or not yet initialized? */
594 if (!lru->node)
595 return;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800596
597 memcg_get_cache_ids();
598
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800599 list_lru_unregister(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800600
601 memcg_destroy_list_lru(lru);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000602 kfree(lru->node);
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800603 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800604
605 memcg_put_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000606}
607EXPORT_SYMBOL_GPL(list_lru_destroy);