blob: 16361c989af95b6ce5d3ba18dc5d44f91628e137 [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{
Jiri Slaby0b452762019-05-31 22:30:26 -070045 return lru->memcg_aware;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080046}
47
48static inline struct list_lru_one *
49list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
50{
51 /*
52 * The lock protects the array of per cgroup lists from relocation
53 * (see memcg_update_list_lru_node).
54 */
55 lockdep_assert_held(&nlru->lock);
56 if (nlru->memcg_lrus && idx >= 0)
57 return nlru->memcg_lrus->lru[idx];
58
59 return &nlru->lru;
60}
61
Vladimir Davydovdf406552015-11-05 18:49:04 -080062static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
63{
64 struct page *page;
65
66 if (!memcg_kmem_enabled())
67 return NULL;
68 page = virt_to_head_page(ptr);
69 return page->mem_cgroup;
70}
71
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080072static inline struct list_lru_one *
73list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
74{
75 struct mem_cgroup *memcg;
76
77 if (!nlru->memcg_lrus)
78 return &nlru->lru;
79
80 memcg = mem_cgroup_from_kmem(ptr);
81 if (!memcg)
82 return &nlru->lru;
83
84 return list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
85}
86#else
87static inline bool list_lru_memcg_aware(struct list_lru *lru)
88{
89 return false;
90}
91
92static inline struct list_lru_one *
93list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
94{
95 return &nlru->lru;
96}
97
98static inline struct list_lru_one *
99list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
100{
101 return &nlru->lru;
102}
Johannes Weiner127424c2016-01-20 15:02:32 -0800103#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800104
Dave Chinnera38e4082013-08-28 10:17:58 +1000105bool list_lru_add(struct list_lru *lru, struct list_head *item)
106{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000107 int nid = page_to_nid(virt_to_page(item));
108 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800109 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000110
111 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000112 if (list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700113 l = list_lru_from_kmem(nlru, item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800114 list_add_tail(item, &l->list);
115 l->nr_items++;
Sahitya Tummalaa48542e2017-07-10 15:49:57 -0700116 nlru->nr_items++;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000117 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000118 return true;
119 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000120 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000121 return false;
122}
123EXPORT_SYMBOL_GPL(list_lru_add);
124
125bool list_lru_del(struct list_lru *lru, struct list_head *item)
126{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000127 int nid = page_to_nid(virt_to_page(item));
128 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800129 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000130
131 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000132 if (!list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700133 l = list_lru_from_kmem(nlru, item);
Dave Chinnera38e4082013-08-28 10:17:58 +1000134 list_del_init(item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800135 l->nr_items--;
Sahitya Tummalaa48542e2017-07-10 15:49:57 -0700136 nlru->nr_items--;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000137 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000138 return true;
139 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000140 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000141 return false;
142}
143EXPORT_SYMBOL_GPL(list_lru_del);
144
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800145void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
146{
147 list_del_init(item);
148 list->nr_items--;
149}
150EXPORT_SYMBOL_GPL(list_lru_isolate);
151
152void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
153 struct list_head *head)
154{
155 list_move(item, head);
156 list->nr_items--;
157}
158EXPORT_SYMBOL_GPL(list_lru_isolate_move);
159
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800160static unsigned long __list_lru_count_one(struct list_lru *lru,
161 int nid, int memcg_idx)
Dave Chinnera38e4082013-08-28 10:17:58 +1000162{
Glauber Costa6a4f4962013-08-28 10:18:02 +1000163 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800164 struct list_lru_one *l;
165 unsigned long count;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000166
Glauber Costa6a4f4962013-08-28 10:18:02 +1000167 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800168 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800169 count = l->nr_items;
Glauber Costa6a4f4962013-08-28 10:18:02 +1000170 spin_unlock(&nlru->lock);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000171
172 return count;
173}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800174
175unsigned long list_lru_count_one(struct list_lru *lru,
176 int nid, struct mem_cgroup *memcg)
177{
178 return __list_lru_count_one(lru, nid, memcg_cache_id(memcg));
179}
180EXPORT_SYMBOL_GPL(list_lru_count_one);
181
182unsigned long list_lru_count_node(struct list_lru *lru, int nid)
183{
Sahitya Tummalaa48542e2017-07-10 15:49:57 -0700184 struct list_lru_node *nlru;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800185
Sahitya Tummalaa48542e2017-07-10 15:49:57 -0700186 nlru = &lru->node[nid];
187 return nlru->nr_items;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800188}
Glauber Costa6a4f4962013-08-28 10:18:02 +1000189EXPORT_SYMBOL_GPL(list_lru_count_node);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000190
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800191static unsigned long
192__list_lru_walk_one(struct list_lru *lru, int nid, int memcg_idx,
193 list_lru_walk_cb isolate, void *cb_arg,
194 unsigned long *nr_to_walk)
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000195{
196
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800197 struct list_lru_node *nlru = &lru->node[nid];
198 struct list_lru_one *l;
Dave Chinnera38e4082013-08-28 10:17:58 +1000199 struct list_head *item, *n;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000200 unsigned long isolated = 0;
Dave Chinnera38e4082013-08-28 10:17:58 +1000201
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000202 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800203 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Dave Chinnera38e4082013-08-28 10:17:58 +1000204restart:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800205 list_for_each_safe(item, n, &l->list) {
Dave Chinnera38e4082013-08-28 10:17:58 +1000206 enum lru_status ret;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000207
208 /*
209 * decrement nr_to_walk first so that we don't livelock if we
210 * get stuck on large numbesr of LRU_RETRY items
211 */
Russell Kingc56b0972013-10-30 14:16:16 +0000212 if (!*nr_to_walk)
Dave Chinner5cedf7212013-08-28 10:18:01 +1000213 break;
Russell Kingc56b0972013-10-30 14:16:16 +0000214 --*nr_to_walk;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000215
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800216 ret = isolate(item, l, &nlru->lock, cb_arg);
Dave Chinnera38e4082013-08-28 10:17:58 +1000217 switch (ret) {
Johannes Weiner449dd692014-04-03 14:47:56 -0700218 case LRU_REMOVED_RETRY:
219 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000220 case LRU_REMOVED:
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000221 isolated++;
Sahitya Tummalaa48542e2017-07-10 15:49:57 -0700222 nlru->nr_items--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700223 /*
224 * If the lru lock has been dropped, our list
225 * traversal is now invalid and so we have to
226 * restart from scratch.
227 */
228 if (ret == LRU_REMOVED_RETRY)
229 goto restart;
Dave Chinnera38e4082013-08-28 10:17:58 +1000230 break;
231 case LRU_ROTATE:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800232 list_move_tail(item, &l->list);
Dave Chinnera38e4082013-08-28 10:17:58 +1000233 break;
234 case LRU_SKIP:
235 break;
236 case LRU_RETRY:
Dave Chinner5cedf7212013-08-28 10:18:01 +1000237 /*
238 * The lru lock has been dropped, our list traversal is
239 * now invalid and so we have to restart from scratch.
240 */
Johannes Weiner449dd692014-04-03 14:47:56 -0700241 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000242 goto restart;
243 default:
244 BUG();
245 }
Dave Chinnera38e4082013-08-28 10:17:58 +1000246 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000247
248 spin_unlock(&nlru->lock);
249 return isolated;
250}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800251
252unsigned long
253list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
254 list_lru_walk_cb isolate, void *cb_arg,
255 unsigned long *nr_to_walk)
256{
257 return __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
258 isolate, cb_arg, nr_to_walk);
259}
260EXPORT_SYMBOL_GPL(list_lru_walk_one);
261
262unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
263 list_lru_walk_cb isolate, void *cb_arg,
264 unsigned long *nr_to_walk)
265{
266 long isolated = 0;
267 int memcg_idx;
268
269 isolated += __list_lru_walk_one(lru, nid, -1, isolate, cb_arg,
270 nr_to_walk);
271 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
272 for_each_memcg_cache_index(memcg_idx) {
273 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
274 isolate, cb_arg, nr_to_walk);
275 if (*nr_to_walk <= 0)
276 break;
277 }
278 }
279 return isolated;
280}
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000281EXPORT_SYMBOL_GPL(list_lru_walk_node);
282
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800283static void init_one_lru(struct list_lru_one *l)
284{
285 INIT_LIST_HEAD(&l->list);
286 l->nr_items = 0;
287}
288
Johannes Weiner127424c2016-01-20 15:02:32 -0800289#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800290static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
291 int begin, int end)
292{
293 int i;
294
295 for (i = begin; i < end; i++)
296 kfree(memcg_lrus->lru[i]);
297}
298
299static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
300 int begin, int end)
301{
302 int i;
303
304 for (i = begin; i < end; i++) {
305 struct list_lru_one *l;
306
307 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
308 if (!l)
309 goto fail;
310
311 init_one_lru(l);
312 memcg_lrus->lru[i] = l;
313 }
314 return 0;
315fail:
Shakeel Butt1bf23a02019-06-13 15:55:49 -0700316 __memcg_destroy_list_lru_node(memcg_lrus, begin, i);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800317 return -ENOMEM;
318}
319
320static int memcg_init_list_lru_node(struct list_lru_node *nlru)
321{
322 int size = memcg_nr_cache_ids;
323
324 nlru->memcg_lrus = kmalloc(size * sizeof(void *), GFP_KERNEL);
325 if (!nlru->memcg_lrus)
326 return -ENOMEM;
327
328 if (__memcg_init_list_lru_node(nlru->memcg_lrus, 0, size)) {
329 kfree(nlru->memcg_lrus);
330 return -ENOMEM;
331 }
332
333 return 0;
334}
335
336static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
337{
338 __memcg_destroy_list_lru_node(nlru->memcg_lrus, 0, memcg_nr_cache_ids);
339 kfree(nlru->memcg_lrus);
340}
341
342static int memcg_update_list_lru_node(struct list_lru_node *nlru,
343 int old_size, int new_size)
344{
345 struct list_lru_memcg *old, *new;
346
347 BUG_ON(old_size > new_size);
348
349 old = nlru->memcg_lrus;
350 new = kmalloc(new_size * sizeof(void *), GFP_KERNEL);
351 if (!new)
352 return -ENOMEM;
353
354 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
355 kfree(new);
356 return -ENOMEM;
357 }
358
359 memcpy(new, old, old_size * sizeof(void *));
360
361 /*
362 * The lock guarantees that we won't race with a reader
363 * (see list_lru_from_memcg_idx).
364 *
365 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
366 * we have to use IRQ-safe primitives here to avoid deadlock.
367 */
368 spin_lock_irq(&nlru->lock);
369 nlru->memcg_lrus = new;
370 spin_unlock_irq(&nlru->lock);
371
372 kfree(old);
373 return 0;
374}
375
376static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
377 int old_size, int new_size)
378{
379 /* do not bother shrinking the array back to the old size, because we
380 * cannot handle allocation failures here */
381 __memcg_destroy_list_lru_node(nlru->memcg_lrus, old_size, new_size);
382}
383
384static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
385{
386 int i;
387
Jiri Slaby0b452762019-05-31 22:30:26 -0700388 lru->memcg_aware = memcg_aware;
389
Raghavendra K T145949a2015-11-05 18:46:26 -0800390 if (!memcg_aware)
391 return 0;
392
393 for_each_node(i) {
394 if (memcg_init_list_lru_node(&lru->node[i]))
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800395 goto fail;
396 }
397 return 0;
398fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800399 for (i = i - 1; i >= 0; i--) {
400 if (!lru->node[i].memcg_lrus)
401 continue;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800402 memcg_destroy_list_lru_node(&lru->node[i]);
Raghavendra K T145949a2015-11-05 18:46:26 -0800403 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800404 return -ENOMEM;
405}
406
407static void memcg_destroy_list_lru(struct list_lru *lru)
408{
409 int i;
410
411 if (!list_lru_memcg_aware(lru))
412 return;
413
Raghavendra K T145949a2015-11-05 18:46:26 -0800414 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800415 memcg_destroy_list_lru_node(&lru->node[i]);
416}
417
418static int memcg_update_list_lru(struct list_lru *lru,
419 int old_size, int new_size)
420{
421 int i;
422
423 if (!list_lru_memcg_aware(lru))
424 return 0;
425
Raghavendra K T145949a2015-11-05 18:46:26 -0800426 for_each_node(i) {
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800427 if (memcg_update_list_lru_node(&lru->node[i],
428 old_size, new_size))
429 goto fail;
430 }
431 return 0;
432fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800433 for (i = i - 1; i >= 0; i--) {
434 if (!lru->node[i].memcg_lrus)
435 continue;
436
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800437 memcg_cancel_update_list_lru_node(&lru->node[i],
438 old_size, new_size);
Raghavendra K T145949a2015-11-05 18:46:26 -0800439 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800440 return -ENOMEM;
441}
442
443static void memcg_cancel_update_list_lru(struct list_lru *lru,
444 int old_size, int new_size)
445{
446 int i;
447
448 if (!list_lru_memcg_aware(lru))
449 return;
450
Raghavendra K T145949a2015-11-05 18:46:26 -0800451 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800452 memcg_cancel_update_list_lru_node(&lru->node[i],
453 old_size, new_size);
454}
455
456int memcg_update_all_list_lrus(int new_size)
457{
458 int ret = 0;
459 struct list_lru *lru;
460 int old_size = memcg_nr_cache_ids;
461
462 mutex_lock(&list_lrus_mutex);
463 list_for_each_entry(lru, &list_lrus, list) {
464 ret = memcg_update_list_lru(lru, old_size, new_size);
465 if (ret)
466 goto fail;
467 }
468out:
469 mutex_unlock(&list_lrus_mutex);
470 return ret;
471fail:
472 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
473 memcg_cancel_update_list_lru(lru, old_size, new_size);
474 goto out;
475}
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800476
477static void memcg_drain_list_lru_node(struct list_lru_node *nlru,
478 int src_idx, int dst_idx)
479{
480 struct list_lru_one *src, *dst;
481
482 /*
483 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
484 * we have to use IRQ-safe primitives here to avoid deadlock.
485 */
486 spin_lock_irq(&nlru->lock);
487
488 src = list_lru_from_memcg_idx(nlru, src_idx);
489 dst = list_lru_from_memcg_idx(nlru, dst_idx);
490
491 list_splice_init(&src->list, &dst->list);
492 dst->nr_items += src->nr_items;
493 src->nr_items = 0;
494
495 spin_unlock_irq(&nlru->lock);
496}
497
498static void memcg_drain_list_lru(struct list_lru *lru,
499 int src_idx, int dst_idx)
500{
501 int i;
502
503 if (!list_lru_memcg_aware(lru))
504 return;
505
Raghavendra K T145949a2015-11-05 18:46:26 -0800506 for_each_node(i)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800507 memcg_drain_list_lru_node(&lru->node[i], src_idx, dst_idx);
508}
509
510void memcg_drain_all_list_lrus(int src_idx, int dst_idx)
511{
512 struct list_lru *lru;
513
514 mutex_lock(&list_lrus_mutex);
515 list_for_each_entry(lru, &list_lrus, list)
516 memcg_drain_list_lru(lru, src_idx, dst_idx);
517 mutex_unlock(&list_lrus_mutex);
518}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800519#else
520static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
521{
522 return 0;
523}
524
525static void memcg_destroy_list_lru(struct list_lru *lru)
526{
527}
Johannes Weiner127424c2016-01-20 15:02:32 -0800528#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800529
530int __list_lru_init(struct list_lru *lru, bool memcg_aware,
531 struct lock_class_key *key)
Dave Chinnera38e4082013-08-28 10:17:58 +1000532{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000533 int i;
Glauber Costa5ca302c2013-08-28 10:18:18 +1000534 size_t size = sizeof(*lru->node) * nr_node_ids;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800535 int err = -ENOMEM;
536
537 memcg_get_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000538
539 lru->node = kzalloc(size, GFP_KERNEL);
540 if (!lru->node)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800541 goto out;
Dave Chinnera38e4082013-08-28 10:17:58 +1000542
Raghavendra K T145949a2015-11-05 18:46:26 -0800543 for_each_node(i) {
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000544 spin_lock_init(&lru->node[i].lock);
Johannes Weiner449dd692014-04-03 14:47:56 -0700545 if (key)
546 lockdep_set_class(&lru->node[i].lock, key);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800547 init_one_lru(&lru->node[i].lru);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000548 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800549
550 err = memcg_init_list_lru(lru, memcg_aware);
551 if (err) {
552 kfree(lru->node);
Alexander Polakov1bc11d72016-10-27 17:46:27 -0700553 /* Do this so a list_lru_destroy() doesn't crash: */
554 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800555 goto out;
556 }
557
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800558 list_lru_register(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800559out:
560 memcg_put_cache_ids();
561 return err;
Dave Chinnera38e4082013-08-28 10:17:58 +1000562}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800563EXPORT_SYMBOL_GPL(__list_lru_init);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000564
565void list_lru_destroy(struct list_lru *lru)
566{
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800567 /* Already destroyed or not yet initialized? */
568 if (!lru->node)
569 return;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800570
571 memcg_get_cache_ids();
572
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800573 list_lru_unregister(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800574
575 memcg_destroy_list_lru(lru);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000576 kfree(lru->node);
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800577 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800578
579 memcg_put_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000580}
581EXPORT_SYMBOL_GPL(list_lru_destroy);