blob: 522b98ca76b3d03c62e5561c2174511f3c26e504 [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
Kirill Tkhai84c07d12018-08-17 15:47:25 -070015#ifdef CONFIG_MEMCG_KMEM
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}
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -080032
Kirill Tkhaifae91d62018-08-17 15:48:10 -070033static int lru_shrinker_id(struct list_lru *lru)
34{
35 return lru->shrinker_id;
36}
37
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080038static inline bool list_lru_memcg_aware(struct list_lru *lru)
39{
Raghavendra K T145949a2015-11-05 18:46:26 -080040 /*
41 * This needs node 0 to be always present, even
42 * in the systems supporting sparse numa ids.
43 */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080044 return !!lru->node[0].memcg_lrus;
45}
46
47static inline struct list_lru_one *
48list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
49{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070050 struct list_lru_memcg *memcg_lrus;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080051 /*
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070052 * Either lock or RCU protects the array of per cgroup lists
53 * from relocation (see memcg_update_list_lru_node).
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080054 */
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -070055 memcg_lrus = rcu_dereference_check(nlru->memcg_lrus,
56 lockdep_is_held(&nlru->lock));
57 if (memcg_lrus && idx >= 0)
58 return memcg_lrus->lru[idx];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080059 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 *
Kirill Tkhai44bd4a42018-08-17 15:47:54 -070073list_lru_from_kmem(struct list_lru_node *nlru, void *ptr,
74 struct mem_cgroup **memcg_ptr)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080075{
Kirill Tkhai44bd4a42018-08-17 15:47:54 -070076 struct list_lru_one *l = &nlru->lru;
77 struct mem_cgroup *memcg = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080078
79 if (!nlru->memcg_lrus)
Kirill Tkhai44bd4a42018-08-17 15:47:54 -070080 goto out;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080081
82 memcg = mem_cgroup_from_kmem(ptr);
83 if (!memcg)
Kirill Tkhai44bd4a42018-08-17 15:47:54 -070084 goto out;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080085
Kirill Tkhai44bd4a42018-08-17 15:47:54 -070086 l = list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
87out:
88 if (memcg_ptr)
89 *memcg_ptr = memcg;
90 return l;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -080091}
92#else
Kirill Tkhaie0295232018-08-17 15:47:21 -070093static void list_lru_register(struct list_lru *lru)
94{
95}
96
97static void list_lru_unregister(struct list_lru *lru)
98{
99}
100
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700101static int lru_shrinker_id(struct list_lru *lru)
102{
103 return -1;
104}
105
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800106static inline bool list_lru_memcg_aware(struct list_lru *lru)
107{
108 return false;
109}
110
111static inline struct list_lru_one *
112list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
113{
114 return &nlru->lru;
115}
116
117static inline struct list_lru_one *
Kirill Tkhai44bd4a42018-08-17 15:47:54 -0700118list_lru_from_kmem(struct list_lru_node *nlru, void *ptr,
119 struct mem_cgroup **memcg_ptr)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800120{
Kirill Tkhai44bd4a42018-08-17 15:47:54 -0700121 if (memcg_ptr)
122 *memcg_ptr = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800123 return &nlru->lru;
124}
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700125#endif /* CONFIG_MEMCG_KMEM */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800126
Dave Chinnera38e4082013-08-28 10:17:58 +1000127bool list_lru_add(struct list_lru *lru, struct list_head *item)
128{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000129 int nid = page_to_nid(virt_to_page(item));
130 struct list_lru_node *nlru = &lru->node[nid];
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700131 struct mem_cgroup *memcg;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800132 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000133
134 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000135 if (list_empty(item)) {
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700136 l = list_lru_from_kmem(nlru, item, &memcg);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800137 list_add_tail(item, &l->list);
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700138 /* Set shrinker bit if the first element was added */
139 if (!l->nr_items++)
140 memcg_set_shrinker_bit(memcg, nid,
141 lru_shrinker_id(lru));
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700142 nlru->nr_items++;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000143 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000144 return true;
145 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000146 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000147 return false;
148}
149EXPORT_SYMBOL_GPL(list_lru_add);
150
151bool list_lru_del(struct list_lru *lru, struct list_head *item)
152{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000153 int nid = page_to_nid(virt_to_page(item));
154 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800155 struct list_lru_one *l;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000156
157 spin_lock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000158 if (!list_empty(item)) {
Kirill Tkhai44bd4a42018-08-17 15:47:54 -0700159 l = list_lru_from_kmem(nlru, item, NULL);
Dave Chinnera38e4082013-08-28 10:17:58 +1000160 list_del_init(item);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800161 l->nr_items--;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700162 nlru->nr_items--;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000163 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000164 return true;
165 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000166 spin_unlock(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000167 return false;
168}
169EXPORT_SYMBOL_GPL(list_lru_del);
170
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800171void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
172{
173 list_del_init(item);
174 list->nr_items--;
175}
176EXPORT_SYMBOL_GPL(list_lru_isolate);
177
178void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
179 struct list_head *head)
180{
181 list_move(item, head);
182 list->nr_items--;
183}
184EXPORT_SYMBOL_GPL(list_lru_isolate_move);
185
Andrew Morton930eaac2018-08-17 15:46:11 -0700186unsigned long list_lru_count_one(struct list_lru *lru,
187 int nid, struct mem_cgroup *memcg)
Dave Chinnera38e4082013-08-28 10:17:58 +1000188{
Glauber Costa6a4f4962013-08-28 10:18:02 +1000189 struct list_lru_node *nlru = &lru->node[nid];
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800190 struct list_lru_one *l;
191 unsigned long count;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000192
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700193 rcu_read_lock();
Andrew Morton930eaac2018-08-17 15:46:11 -0700194 l = list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800195 count = l->nr_items;
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700196 rcu_read_unlock();
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000197
198 return count;
199}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800200EXPORT_SYMBOL_GPL(list_lru_count_one);
201
202unsigned long list_lru_count_node(struct list_lru *lru, int nid)
203{
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700204 struct list_lru_node *nlru;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800205
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700206 nlru = &lru->node[nid];
207 return nlru->nr_items;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800208}
Glauber Costa6a4f4962013-08-28 10:18:02 +1000209EXPORT_SYMBOL_GPL(list_lru_count_node);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000210
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800211static unsigned long
212__list_lru_walk_one(struct list_lru *lru, int nid, int memcg_idx,
213 list_lru_walk_cb isolate, void *cb_arg,
214 unsigned long *nr_to_walk)
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000215{
216
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800217 struct list_lru_node *nlru = &lru->node[nid];
218 struct list_lru_one *l;
Dave Chinnera38e4082013-08-28 10:17:58 +1000219 struct list_head *item, *n;
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000220 unsigned long isolated = 0;
Dave Chinnera38e4082013-08-28 10:17:58 +1000221
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000222 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800223 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Dave Chinnera38e4082013-08-28 10:17:58 +1000224restart:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800225 list_for_each_safe(item, n, &l->list) {
Dave Chinnera38e4082013-08-28 10:17:58 +1000226 enum lru_status ret;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000227
228 /*
229 * decrement nr_to_walk first so that we don't livelock if we
230 * get stuck on large numbesr of LRU_RETRY items
231 */
Russell Kingc56b0972013-10-30 14:16:16 +0000232 if (!*nr_to_walk)
Dave Chinner5cedf7212013-08-28 10:18:01 +1000233 break;
Russell Kingc56b0972013-10-30 14:16:16 +0000234 --*nr_to_walk;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000235
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800236 ret = isolate(item, l, &nlru->lock, cb_arg);
Dave Chinnera38e4082013-08-28 10:17:58 +1000237 switch (ret) {
Johannes Weiner449dd692014-04-03 14:47:56 -0700238 case LRU_REMOVED_RETRY:
239 assert_spin_locked(&nlru->lock);
Gustavo A. R. Silva5b568ac2017-11-15 17:38:49 -0800240 /* fall through */
Dave Chinnera38e4082013-08-28 10:17:58 +1000241 case LRU_REMOVED:
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000242 isolated++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700243 nlru->nr_items--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700244 /*
245 * If the lru lock has been dropped, our list
246 * traversal is now invalid and so we have to
247 * restart from scratch.
248 */
249 if (ret == LRU_REMOVED_RETRY)
250 goto restart;
Dave Chinnera38e4082013-08-28 10:17:58 +1000251 break;
252 case LRU_ROTATE:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800253 list_move_tail(item, &l->list);
Dave Chinnera38e4082013-08-28 10:17:58 +1000254 break;
255 case LRU_SKIP:
256 break;
257 case LRU_RETRY:
Dave Chinner5cedf7212013-08-28 10:18:01 +1000258 /*
259 * The lru lock has been dropped, our list traversal is
260 * now invalid and so we have to restart from scratch.
261 */
Johannes Weiner449dd692014-04-03 14:47:56 -0700262 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000263 goto restart;
264 default:
265 BUG();
266 }
Dave Chinnera38e4082013-08-28 10:17:58 +1000267 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000268
269 spin_unlock(&nlru->lock);
270 return isolated;
271}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800272
273unsigned long
274list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
275 list_lru_walk_cb isolate, void *cb_arg,
276 unsigned long *nr_to_walk)
277{
278 return __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
279 isolate, cb_arg, nr_to_walk);
280}
281EXPORT_SYMBOL_GPL(list_lru_walk_one);
282
283unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
284 list_lru_walk_cb isolate, void *cb_arg,
285 unsigned long *nr_to_walk)
286{
287 long isolated = 0;
288 int memcg_idx;
289
Sebastian Andrzej Siewior87a5ffc2018-08-17 15:49:45 -0700290 isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg,
291 nr_to_walk);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800292 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
293 for_each_memcg_cache_index(memcg_idx) {
294 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
295 isolate, cb_arg, nr_to_walk);
296 if (*nr_to_walk <= 0)
297 break;
298 }
299 }
300 return isolated;
301}
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000302EXPORT_SYMBOL_GPL(list_lru_walk_node);
303
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800304static void init_one_lru(struct list_lru_one *l)
305{
306 INIT_LIST_HEAD(&l->list);
307 l->nr_items = 0;
308}
309
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700310#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800311static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
312 int begin, int end)
313{
314 int i;
315
316 for (i = begin; i < end; i++)
317 kfree(memcg_lrus->lru[i]);
318}
319
320static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
321 int begin, int end)
322{
323 int i;
324
325 for (i = begin; i < end; i++) {
326 struct list_lru_one *l;
327
328 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
329 if (!l)
330 goto fail;
331
332 init_one_lru(l);
333 memcg_lrus->lru[i] = l;
334 }
335 return 0;
336fail:
337 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1);
338 return -ENOMEM;
339}
340
341static int memcg_init_list_lru_node(struct list_lru_node *nlru)
342{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700343 struct list_lru_memcg *memcg_lrus;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800344 int size = memcg_nr_cache_ids;
345
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700346 memcg_lrus = kvmalloc(sizeof(*memcg_lrus) +
347 size * sizeof(void *), GFP_KERNEL);
348 if (!memcg_lrus)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800349 return -ENOMEM;
350
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700351 if (__memcg_init_list_lru_node(memcg_lrus, 0, size)) {
352 kvfree(memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800353 return -ENOMEM;
354 }
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700355 RCU_INIT_POINTER(nlru->memcg_lrus, memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800356
357 return 0;
358}
359
360static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
361{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700362 struct list_lru_memcg *memcg_lrus;
363 /*
364 * This is called when shrinker has already been unregistered,
365 * and nobody can use it. So, there is no need to use kvfree_rcu().
366 */
367 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus, true);
368 __memcg_destroy_list_lru_node(memcg_lrus, 0, memcg_nr_cache_ids);
369 kvfree(memcg_lrus);
370}
371
372static void kvfree_rcu(struct rcu_head *head)
373{
374 struct list_lru_memcg *mlru;
375
376 mlru = container_of(head, struct list_lru_memcg, rcu);
377 kvfree(mlru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800378}
379
380static int memcg_update_list_lru_node(struct list_lru_node *nlru,
381 int old_size, int new_size)
382{
383 struct list_lru_memcg *old, *new;
384
385 BUG_ON(old_size > new_size);
386
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700387 old = rcu_dereference_protected(nlru->memcg_lrus,
388 lockdep_is_held(&list_lrus_mutex));
389 new = kvmalloc(sizeof(*new) + new_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800390 if (!new)
391 return -ENOMEM;
392
393 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700394 kvfree(new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800395 return -ENOMEM;
396 }
397
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700398 memcpy(&new->lru, &old->lru, old_size * sizeof(void *));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800399
400 /*
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700401 * The locking below allows readers that hold nlru->lock avoid taking
402 * rcu_read_lock (see list_lru_from_memcg_idx).
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800403 *
404 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
405 * we have to use IRQ-safe primitives here to avoid deadlock.
406 */
407 spin_lock_irq(&nlru->lock);
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700408 rcu_assign_pointer(nlru->memcg_lrus, new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800409 spin_unlock_irq(&nlru->lock);
410
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700411 call_rcu(&old->rcu, kvfree_rcu);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800412 return 0;
413}
414
415static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
416 int old_size, int new_size)
417{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700418 struct list_lru_memcg *memcg_lrus;
419
420 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus,
421 lockdep_is_held(&list_lrus_mutex));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800422 /* do not bother shrinking the array back to the old size, because we
423 * cannot handle allocation failures here */
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700424 __memcg_destroy_list_lru_node(memcg_lrus, old_size, new_size);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800425}
426
427static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
428{
429 int i;
430
Raghavendra K T145949a2015-11-05 18:46:26 -0800431 if (!memcg_aware)
432 return 0;
433
434 for_each_node(i) {
435 if (memcg_init_list_lru_node(&lru->node[i]))
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800436 goto fail;
437 }
438 return 0;
439fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800440 for (i = i - 1; i >= 0; i--) {
441 if (!lru->node[i].memcg_lrus)
442 continue;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800443 memcg_destroy_list_lru_node(&lru->node[i]);
Raghavendra K T145949a2015-11-05 18:46:26 -0800444 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800445 return -ENOMEM;
446}
447
448static void memcg_destroy_list_lru(struct list_lru *lru)
449{
450 int i;
451
452 if (!list_lru_memcg_aware(lru))
453 return;
454
Raghavendra K T145949a2015-11-05 18:46:26 -0800455 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800456 memcg_destroy_list_lru_node(&lru->node[i]);
457}
458
459static int memcg_update_list_lru(struct list_lru *lru,
460 int old_size, int new_size)
461{
462 int i;
463
464 if (!list_lru_memcg_aware(lru))
465 return 0;
466
Raghavendra K T145949a2015-11-05 18:46:26 -0800467 for_each_node(i) {
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800468 if (memcg_update_list_lru_node(&lru->node[i],
469 old_size, new_size))
470 goto fail;
471 }
472 return 0;
473fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800474 for (i = i - 1; i >= 0; i--) {
475 if (!lru->node[i].memcg_lrus)
476 continue;
477
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800478 memcg_cancel_update_list_lru_node(&lru->node[i],
479 old_size, new_size);
Raghavendra K T145949a2015-11-05 18:46:26 -0800480 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800481 return -ENOMEM;
482}
483
484static void memcg_cancel_update_list_lru(struct list_lru *lru,
485 int old_size, int new_size)
486{
487 int i;
488
489 if (!list_lru_memcg_aware(lru))
490 return;
491
Raghavendra K T145949a2015-11-05 18:46:26 -0800492 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800493 memcg_cancel_update_list_lru_node(&lru->node[i],
494 old_size, new_size);
495}
496
497int memcg_update_all_list_lrus(int new_size)
498{
499 int ret = 0;
500 struct list_lru *lru;
501 int old_size = memcg_nr_cache_ids;
502
503 mutex_lock(&list_lrus_mutex);
504 list_for_each_entry(lru, &list_lrus, list) {
505 ret = memcg_update_list_lru(lru, old_size, new_size);
506 if (ret)
507 goto fail;
508 }
509out:
510 mutex_unlock(&list_lrus_mutex);
511 return ret;
512fail:
513 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
514 memcg_cancel_update_list_lru(lru, old_size, new_size);
515 goto out;
516}
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800517
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700518static void memcg_drain_list_lru_node(struct list_lru *lru, int nid,
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700519 int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800520{
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700521 struct list_lru_node *nlru = &lru->node[nid];
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700522 int dst_idx = dst_memcg->kmemcg_id;
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800523 struct list_lru_one *src, *dst;
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700524 bool set;
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800525
526 /*
527 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
528 * we have to use IRQ-safe primitives here to avoid deadlock.
529 */
530 spin_lock_irq(&nlru->lock);
531
532 src = list_lru_from_memcg_idx(nlru, src_idx);
533 dst = list_lru_from_memcg_idx(nlru, dst_idx);
534
535 list_splice_init(&src->list, &dst->list);
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700536 set = (!dst->nr_items && src->nr_items);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800537 dst->nr_items += src->nr_items;
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700538 if (set)
539 memcg_set_shrinker_bit(dst_memcg, nid, lru_shrinker_id(lru));
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800540 src->nr_items = 0;
541
542 spin_unlock_irq(&nlru->lock);
543}
544
545static void memcg_drain_list_lru(struct list_lru *lru,
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700546 int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800547{
548 int i;
549
550 if (!list_lru_memcg_aware(lru))
551 return;
552
Raghavendra K T145949a2015-11-05 18:46:26 -0800553 for_each_node(i)
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700554 memcg_drain_list_lru_node(lru, i, src_idx, dst_memcg);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800555}
556
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700557void memcg_drain_all_list_lrus(int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800558{
559 struct list_lru *lru;
560
561 mutex_lock(&list_lrus_mutex);
562 list_for_each_entry(lru, &list_lrus, list)
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700563 memcg_drain_list_lru(lru, src_idx, dst_memcg);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800564 mutex_unlock(&list_lrus_mutex);
565}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800566#else
567static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
568{
569 return 0;
570}
571
572static void memcg_destroy_list_lru(struct list_lru *lru)
573{
574}
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700575#endif /* CONFIG_MEMCG_KMEM */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800576
577int __list_lru_init(struct list_lru *lru, bool memcg_aware,
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700578 struct lock_class_key *key, struct shrinker *shrinker)
Dave Chinnera38e4082013-08-28 10:17:58 +1000579{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000580 int i;
Glauber Costa5ca302c2013-08-28 10:18:18 +1000581 size_t size = sizeof(*lru->node) * nr_node_ids;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800582 int err = -ENOMEM;
583
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700584#ifdef CONFIG_MEMCG_KMEM
585 if (shrinker)
586 lru->shrinker_id = shrinker->id;
587 else
588 lru->shrinker_id = -1;
589#endif
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800590 memcg_get_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000591
592 lru->node = kzalloc(size, GFP_KERNEL);
593 if (!lru->node)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800594 goto out;
Dave Chinnera38e4082013-08-28 10:17:58 +1000595
Raghavendra K T145949a2015-11-05 18:46:26 -0800596 for_each_node(i) {
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000597 spin_lock_init(&lru->node[i].lock);
Johannes Weiner449dd692014-04-03 14:47:56 -0700598 if (key)
599 lockdep_set_class(&lru->node[i].lock, key);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800600 init_one_lru(&lru->node[i].lru);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000601 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800602
603 err = memcg_init_list_lru(lru, memcg_aware);
604 if (err) {
605 kfree(lru->node);
Alexander Polakov1bc11d72016-10-27 17:46:27 -0700606 /* Do this so a list_lru_destroy() doesn't crash: */
607 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800608 goto out;
609 }
610
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800611 list_lru_register(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800612out:
613 memcg_put_cache_ids();
614 return err;
Dave Chinnera38e4082013-08-28 10:17:58 +1000615}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800616EXPORT_SYMBOL_GPL(__list_lru_init);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000617
618void list_lru_destroy(struct list_lru *lru)
619{
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800620 /* Already destroyed or not yet initialized? */
621 if (!lru->node)
622 return;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800623
624 memcg_get_cache_ids();
625
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800626 list_lru_unregister(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800627
628 memcg_destroy_list_lru(lru);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000629 kfree(lru->node);
Vladimir Davydovc0a5b5602015-02-12 14:59:07 -0800630 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800631
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700632#ifdef CONFIG_MEMCG_KMEM
633 lru->shrinker_id = -1;
634#endif
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800635 memcg_put_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000636}
637EXPORT_SYMBOL_GPL(list_lru_destroy);