blob: fd41e969ede520f535dced835cd69e1e74a02951 [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 Davydovc0a5b5602015-02-12 14:59:07 -080012#include <linux/mutex.h>
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080013#include <linux/memcontrol.h>
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -080014
Johannes Weiner127424c2016-01-20 15:02:32 -080015#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydovc0a5b5602015-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{
55 /*
56 * The lock protects the array of per cgroup lists from relocation
57 * (see memcg_update_list_lru_node).
58 */
59 lockdep_assert_held(&nlru->lock);
60 if (nlru->memcg_lrus && idx >= 0)
61 return nlru->memcg_lrus->lru[idx];
62
63 return &nlru->lru;
64}
65
Vladimir Davydovdf406552015-11-05 18:49:04 -080066static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
67{
68 struct page *page;
69
70 if (!memcg_kmem_enabled())
71 return NULL;
72 page = virt_to_head_page(ptr);
73 return page->mem_cgroup;
74}
75
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080076static inline struct list_lru_one *
77list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
78{
79 struct mem_cgroup *memcg;
80
81 if (!nlru->memcg_lrus)
82 return &nlru->lru;
83
84 memcg = mem_cgroup_from_kmem(ptr);
85 if (!memcg)
86 return &nlru->lru;
87
88 return list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
89}
90#else
91static inline bool list_lru_memcg_aware(struct list_lru *lru)
92{
93 return false;
94}
95
96static inline struct list_lru_one *
97list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
98{
99 return &nlru->lru;
100}
101
102static inline struct list_lru_one *
103list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
104{
105 return &nlru->lru;
106}
Johannes Weiner127424c2016-01-20 15:02:32 -0800107#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800108
Dave Chinnera38e4082013-08-28 10:17:58 +1000109bool list_lru_add(struct list_lru *lru, struct list_head *item)
110{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000111 int nid = page_to_nid(virt_to_page(item));
112 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800113 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000114
115 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000116 if (list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700117 l = list_lru_from_kmem(nlru, item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800118 list_add_tail(item, &l->list);
119 l->nr_items++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700120 nlru->nr_items++;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000121 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000122 return true;
123 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000124 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000125 return false;
126}
127EXPORT_SYMBOL_GPL(list_lru_add);
128
129bool list_lru_del(struct list_lru *lru, struct list_head *item)
130{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000131 int nid = page_to_nid(virt_to_page(item));
132 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800133 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000134
135 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000136 if (!list_empty(item)) {
Jeff Layton26f5d762015-09-08 15:03:44 -0700137 l = list_lru_from_kmem(nlru, item);
Dave Chinnera38e4082013-08-28 10:17:58 +1000138 list_del_init(item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800139 l->nr_items--;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700140 nlru->nr_items--;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000141 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000142 return true;
143 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000144 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000145 return false;
146}
147EXPORT_SYMBOL_GPL(list_lru_del);
148
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800149void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
150{
151 list_del_init(item);
152 list->nr_items--;
153}
154EXPORT_SYMBOL_GPL(list_lru_isolate);
155
156void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
157 struct list_head *head)
158{
159 list_move(item, head);
160 list->nr_items--;
161}
162EXPORT_SYMBOL_GPL(list_lru_isolate_move);
163
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800164static unsigned long __list_lru_count_one(struct list_lru *lru,
165 int nid, int memcg_idx)
Dave Chinnera38e4082013-08-28 10:17:58 +1000166{
Glauber Costa6a4f4962013-08-28 10:18:02 +1000167 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800168 struct list_lru_one *l;
169 unsigned long count;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000170
Glauber Costa6a4f4962013-08-28 10:18:02 +1000171 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800172 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800173 count = l->nr_items;
Glauber Costa6a4f4962013-08-28 10:18:02 +1000174 spin_unlock(&nlru->lock);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000175
176 return count;
177}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800178
179unsigned long list_lru_count_one(struct list_lru *lru,
180 int nid, struct mem_cgroup *memcg)
181{
182 return __list_lru_count_one(lru, nid, memcg_cache_id(memcg));
183}
184EXPORT_SYMBOL_GPL(list_lru_count_one);
185
186unsigned long list_lru_count_node(struct list_lru *lru, int nid)
187{
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700188 struct list_lru_node *nlru;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800189
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700190 nlru = &lru->node[nid];
191 return nlru->nr_items;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800192}
Glauber Costa6a4f4962013-08-28 10:18:02 +1000193EXPORT_SYMBOL_GPL(list_lru_count_node);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000194
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800195static unsigned long
196__list_lru_walk_one(struct list_lru *lru, int nid, int memcg_idx,
197 list_lru_walk_cb isolate, void *cb_arg,
198 unsigned long *nr_to_walk)
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000199{
200
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800201 struct list_lru_node *nlru = &lru->node[nid];
202 struct list_lru_one *l;
Dave Chinnera38e4082013-08-28 10:17:58 +1000203 struct list_head *item, *n;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000204 unsigned long isolated = 0;
Dave Chinnera38e4082013-08-28 10:17:58 +1000205
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000206 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800207 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Dave Chinnera38e4082013-08-28 10:17:58 +1000208restart:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800209 list_for_each_safe(item, n, &l->list) {
Dave Chinnera38e4082013-08-28 10:17:58 +1000210 enum lru_status ret;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000211
212 /*
213 * decrement nr_to_walk first so that we don't livelock if we
214 * get stuck on large numbesr of LRU_RETRY items
215 */
Russell Kingc56b0972013-10-30 14:16:16 +0000216 if (!*nr_to_walk)
Dave Chinner5cedf7212013-08-28 10:18:01 +1000217 break;
Russell Kingc56b0972013-10-30 14:16:16 +0000218 --*nr_to_walk;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000219
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800220 ret = isolate(item, l, &nlru->lock, cb_arg);
Dave Chinnera38e4082013-08-28 10:17:58 +1000221 switch (ret) {
Johannes Weiner449dd692014-04-03 14:47:56 -0700222 case LRU_REMOVED_RETRY:
223 assert_spin_locked(&nlru->lock);
Gustavo A. R. Silva5b568ac2017-11-15 17:38:49 -0800224 /* fall through */
Dave Chinnera38e4082013-08-28 10:17:58 +1000225 case LRU_REMOVED:
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000226 isolated++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700227 nlru->nr_items--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700228 /*
229 * If the lru lock has been dropped, our list
230 * traversal is now invalid and so we have to
231 * restart from scratch.
232 */
233 if (ret == LRU_REMOVED_RETRY)
234 goto restart;
Dave Chinnera38e4082013-08-28 10:17:58 +1000235 break;
236 case LRU_ROTATE:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800237 list_move_tail(item, &l->list);
Dave Chinnera38e4082013-08-28 10:17:58 +1000238 break;
239 case LRU_SKIP:
240 break;
241 case LRU_RETRY:
Dave Chinner5cedf7212013-08-28 10:18:01 +1000242 /*
243 * The lru lock has been dropped, our list traversal is
244 * now invalid and so we have to restart from scratch.
245 */
Johannes Weiner449dd692014-04-03 14:47:56 -0700246 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000247 goto restart;
248 default:
249 BUG();
250 }
Dave Chinnera38e4082013-08-28 10:17:58 +1000251 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000252
253 spin_unlock(&nlru->lock);
254 return isolated;
255}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800256
257unsigned long
258list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
259 list_lru_walk_cb isolate, void *cb_arg,
260 unsigned long *nr_to_walk)
261{
262 return __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
263 isolate, cb_arg, nr_to_walk);
264}
265EXPORT_SYMBOL_GPL(list_lru_walk_one);
266
267unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
268 list_lru_walk_cb isolate, void *cb_arg,
269 unsigned long *nr_to_walk)
270{
271 long isolated = 0;
272 int memcg_idx;
273
274 isolated += __list_lru_walk_one(lru, nid, -1, isolate, cb_arg,
275 nr_to_walk);
276 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
277 for_each_memcg_cache_index(memcg_idx) {
278 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
279 isolate, cb_arg, nr_to_walk);
280 if (*nr_to_walk <= 0)
281 break;
282 }
283 }
284 return isolated;
285}
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000286EXPORT_SYMBOL_GPL(list_lru_walk_node);
287
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800288static void init_one_lru(struct list_lru_one *l)
289{
290 INIT_LIST_HEAD(&l->list);
291 l->nr_items = 0;
292}
293
Johannes Weiner127424c2016-01-20 15:02:32 -0800294#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800295static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
296 int begin, int end)
297{
298 int i;
299
300 for (i = begin; i < end; i++)
301 kfree(memcg_lrus->lru[i]);
302}
303
304static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
305 int begin, int end)
306{
307 int i;
308
309 for (i = begin; i < end; i++) {
310 struct list_lru_one *l;
311
312 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
313 if (!l)
314 goto fail;
315
316 init_one_lru(l);
317 memcg_lrus->lru[i] = l;
318 }
319 return 0;
320fail:
321 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1);
322 return -ENOMEM;
323}
324
325static int memcg_init_list_lru_node(struct list_lru_node *nlru)
326{
327 int size = memcg_nr_cache_ids;
328
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700329 nlru->memcg_lrus = kvmalloc(size * sizeof(void *), GFP_KERNEL);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800330 if (!nlru->memcg_lrus)
331 return -ENOMEM;
332
333 if (__memcg_init_list_lru_node(nlru->memcg_lrus, 0, size)) {
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700334 kvfree(nlru->memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800335 return -ENOMEM;
336 }
337
338 return 0;
339}
340
341static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
342{
343 __memcg_destroy_list_lru_node(nlru->memcg_lrus, 0, memcg_nr_cache_ids);
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700344 kvfree(nlru->memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800345}
346
347static int memcg_update_list_lru_node(struct list_lru_node *nlru,
348 int old_size, int new_size)
349{
350 struct list_lru_memcg *old, *new;
351
352 BUG_ON(old_size > new_size);
353
354 old = nlru->memcg_lrus;
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700355 new = kvmalloc(new_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800356 if (!new)
357 return -ENOMEM;
358
359 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700360 kvfree(new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800361 return -ENOMEM;
362 }
363
364 memcpy(new, old, old_size * sizeof(void *));
365
366 /*
367 * The lock guarantees that we won't race with a reader
368 * (see list_lru_from_memcg_idx).
369 *
370 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
371 * we have to use IRQ-safe primitives here to avoid deadlock.
372 */
373 spin_lock_irq(&nlru->lock);
374 nlru->memcg_lrus = new;
375 spin_unlock_irq(&nlru->lock);
376
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700377 kvfree(old);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800378 return 0;
379}
380
381static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
382 int old_size, int new_size)
383{
384 /* do not bother shrinking the array back to the old size, because we
385 * cannot handle allocation failures here */
386 __memcg_destroy_list_lru_node(nlru->memcg_lrus, old_size, new_size);
387}
388
389static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
390{
391 int i;
392
Raghavendra K T145949a2015-11-05 18:46:26 -0800393 if (!memcg_aware)
394 return 0;
395
396 for_each_node(i) {
397 if (memcg_init_list_lru_node(&lru->node[i]))
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800398 goto fail;
399 }
400 return 0;
401fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800402 for (i = i - 1; i >= 0; i--) {
403 if (!lru->node[i].memcg_lrus)
404 continue;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800405 memcg_destroy_list_lru_node(&lru->node[i]);
Raghavendra K T145949a2015-11-05 18:46:26 -0800406 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800407 return -ENOMEM;
408}
409
410static void memcg_destroy_list_lru(struct list_lru *lru)
411{
412 int i;
413
414 if (!list_lru_memcg_aware(lru))
415 return;
416
Raghavendra K T145949a2015-11-05 18:46:26 -0800417 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800418 memcg_destroy_list_lru_node(&lru->node[i]);
419}
420
421static int memcg_update_list_lru(struct list_lru *lru,
422 int old_size, int new_size)
423{
424 int i;
425
426 if (!list_lru_memcg_aware(lru))
427 return 0;
428
Raghavendra K T145949a2015-11-05 18:46:26 -0800429 for_each_node(i) {
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800430 if (memcg_update_list_lru_node(&lru->node[i],
431 old_size, new_size))
432 goto fail;
433 }
434 return 0;
435fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800436 for (i = i - 1; i >= 0; i--) {
437 if (!lru->node[i].memcg_lrus)
438 continue;
439
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800440 memcg_cancel_update_list_lru_node(&lru->node[i],
441 old_size, new_size);
Raghavendra K T145949a2015-11-05 18:46:26 -0800442 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800443 return -ENOMEM;
444}
445
446static void memcg_cancel_update_list_lru(struct list_lru *lru,
447 int old_size, int new_size)
448{
449 int i;
450
451 if (!list_lru_memcg_aware(lru))
452 return;
453
Raghavendra K T145949a2015-11-05 18:46:26 -0800454 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800455 memcg_cancel_update_list_lru_node(&lru->node[i],
456 old_size, new_size);
457}
458
459int memcg_update_all_list_lrus(int new_size)
460{
461 int ret = 0;
462 struct list_lru *lru;
463 int old_size = memcg_nr_cache_ids;
464
465 mutex_lock(&list_lrus_mutex);
466 list_for_each_entry(lru, &list_lrus, list) {
467 ret = memcg_update_list_lru(lru, old_size, new_size);
468 if (ret)
469 goto fail;
470 }
471out:
472 mutex_unlock(&list_lrus_mutex);
473 return ret;
474fail:
475 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
476 memcg_cancel_update_list_lru(lru, old_size, new_size);
477 goto out;
478}
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800479
480static void memcg_drain_list_lru_node(struct list_lru_node *nlru,
481 int src_idx, int dst_idx)
482{
483 struct list_lru_one *src, *dst;
484
485 /*
486 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
487 * we have to use IRQ-safe primitives here to avoid deadlock.
488 */
489 spin_lock_irq(&nlru->lock);
490
491 src = list_lru_from_memcg_idx(nlru, src_idx);
492 dst = list_lru_from_memcg_idx(nlru, dst_idx);
493
494 list_splice_init(&src->list, &dst->list);
495 dst->nr_items += src->nr_items;
496 src->nr_items = 0;
497
498 spin_unlock_irq(&nlru->lock);
499}
500
501static void memcg_drain_list_lru(struct list_lru *lru,
502 int src_idx, int dst_idx)
503{
504 int i;
505
506 if (!list_lru_memcg_aware(lru))
507 return;
508
Raghavendra K T145949a2015-11-05 18:46:26 -0800509 for_each_node(i)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800510 memcg_drain_list_lru_node(&lru->node[i], src_idx, dst_idx);
511}
512
513void memcg_drain_all_list_lrus(int src_idx, int dst_idx)
514{
515 struct list_lru *lru;
516
517 mutex_lock(&list_lrus_mutex);
518 list_for_each_entry(lru, &list_lrus, list)
519 memcg_drain_list_lru(lru, src_idx, dst_idx);
520 mutex_unlock(&list_lrus_mutex);
521}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800522#else
523static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
524{
525 return 0;
526}
527
528static void memcg_destroy_list_lru(struct list_lru *lru)
529{
530}
Johannes Weiner127424c2016-01-20 15:02:32 -0800531#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800532
533int __list_lru_init(struct list_lru *lru, bool memcg_aware,
534 struct lock_class_key *key)
Dave Chinnera38e4082013-08-28 10:17:58 +1000535{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000536 int i;
Glauber Costa5ca302c2013-08-28 10:18:18 +1000537 size_t size = sizeof(*lru->node) * nr_node_ids;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800538 int err = -ENOMEM;
539
540 memcg_get_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000541
542 lru->node = kzalloc(size, GFP_KERNEL);
543 if (!lru->node)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800544 goto out;
Dave Chinnera38e4082013-08-28 10:17:58 +1000545
Raghavendra K T145949a2015-11-05 18:46:26 -0800546 for_each_node(i) {
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000547 spin_lock_init(&lru->node[i].lock);
Johannes Weiner449dd692014-04-03 14:47:56 -0700548 if (key)
549 lockdep_set_class(&lru->node[i].lock, key);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800550 init_one_lru(&lru->node[i].lru);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000551 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800552
553 err = memcg_init_list_lru(lru, memcg_aware);
554 if (err) {
555 kfree(lru->node);
Alexander Polakov1bc11d72016-10-27 17:46:27 -0700556 /* Do this so a list_lru_destroy() doesn't crash: */
557 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800558 goto out;
559 }
560
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800561 list_lru_register(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800562out:
563 memcg_put_cache_ids();
564 return err;
Dave Chinnera38e4082013-08-28 10:17:58 +1000565}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800566EXPORT_SYMBOL_GPL(__list_lru_init);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000567
568void list_lru_destroy(struct list_lru *lru)
569{
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800570 /* Already destroyed or not yet initialized? */
571 if (!lru->node)
572 return;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800573
574 memcg_get_cache_ids();
575
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800576 list_lru_unregister(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800577
578 memcg_destroy_list_lru(lru);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000579 kfree(lru->node);
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800580 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800581
582 memcg_put_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000583}
584EXPORT_SYMBOL_GPL(list_lru_destroy);