blob: 286f92a0963e878786028dd53654f8e54cc4ccec [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
Kirill Tkhai84c07d12018-08-17 15:47:25 -070015#ifdef CONFIG_MEMCG_KMEM
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}
Vladimir Davydovc0a5b562015-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
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800222 l = list_lru_from_memcg_idx(nlru, memcg_idx);
Dave Chinnera38e4082013-08-28 10:17:58 +1000223restart:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800224 list_for_each_safe(item, n, &l->list) {
Dave Chinnera38e4082013-08-28 10:17:58 +1000225 enum lru_status ret;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000226
227 /*
228 * decrement nr_to_walk first so that we don't livelock if we
229 * get stuck on large numbesr of LRU_RETRY items
230 */
Russell Kingc56b0972013-10-30 14:16:16 +0000231 if (!*nr_to_walk)
Dave Chinner5cedf7212013-08-28 10:18:01 +1000232 break;
Russell Kingc56b0972013-10-30 14:16:16 +0000233 --*nr_to_walk;
Dave Chinner5cedf7212013-08-28 10:18:01 +1000234
Vladimir Davydov3f97b162015-02-12 14:59:35 -0800235 ret = isolate(item, l, &nlru->lock, cb_arg);
Dave Chinnera38e4082013-08-28 10:17:58 +1000236 switch (ret) {
Johannes Weiner449dd692014-04-03 14:47:56 -0700237 case LRU_REMOVED_RETRY:
238 assert_spin_locked(&nlru->lock);
Gustavo A. R. Silva5b568ac2017-11-15 17:38:49 -0800239 /* fall through */
Dave Chinnera38e4082013-08-28 10:17:58 +1000240 case LRU_REMOVED:
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000241 isolated++;
Sahitya Tummala2c80cd52017-07-10 15:49:57 -0700242 nlru->nr_items--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700243 /*
244 * If the lru lock has been dropped, our list
245 * traversal is now invalid and so we have to
246 * restart from scratch.
247 */
248 if (ret == LRU_REMOVED_RETRY)
249 goto restart;
Dave Chinnera38e4082013-08-28 10:17:58 +1000250 break;
251 case LRU_ROTATE:
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800252 list_move_tail(item, &l->list);
Dave Chinnera38e4082013-08-28 10:17:58 +1000253 break;
254 case LRU_SKIP:
255 break;
256 case LRU_RETRY:
Dave Chinner5cedf7212013-08-28 10:18:01 +1000257 /*
258 * The lru lock has been dropped, our list traversal is
259 * now invalid and so we have to restart from scratch.
260 */
Johannes Weiner449dd692014-04-03 14:47:56 -0700261 assert_spin_locked(&nlru->lock);
Dave Chinnera38e4082013-08-28 10:17:58 +1000262 goto restart;
263 default:
264 BUG();
265 }
Dave Chinnera38e4082013-08-28 10:17:58 +1000266 }
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000267 return isolated;
268}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800269
270unsigned long
271list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
272 list_lru_walk_cb isolate, void *cb_arg,
273 unsigned long *nr_to_walk)
274{
Sebastian Andrzej Siewior6cfe57a2018-08-17 15:49:48 -0700275 struct list_lru_node *nlru = &lru->node[nid];
276 unsigned long ret;
277
278 spin_lock(&nlru->lock);
279 ret = __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
280 isolate, cb_arg, nr_to_walk);
281 spin_unlock(&nlru->lock);
282 return ret;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800283}
284EXPORT_SYMBOL_GPL(list_lru_walk_one);
285
286unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
287 list_lru_walk_cb isolate, void *cb_arg,
288 unsigned long *nr_to_walk)
289{
290 long isolated = 0;
291 int memcg_idx;
292
Sebastian Andrzej Siewior87a5ffc2018-08-17 15:49:45 -0700293 isolated += list_lru_walk_one(lru, nid, NULL, isolate, cb_arg,
294 nr_to_walk);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800295 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
296 for_each_memcg_cache_index(memcg_idx) {
Sebastian Andrzej Siewior6cfe57a2018-08-17 15:49:48 -0700297 struct list_lru_node *nlru = &lru->node[nid];
298
299 spin_lock(&nlru->lock);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800300 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
301 isolate, cb_arg, nr_to_walk);
Sebastian Andrzej Siewior6cfe57a2018-08-17 15:49:48 -0700302 spin_unlock(&nlru->lock);
303
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800304 if (*nr_to_walk <= 0)
305 break;
306 }
307 }
308 return isolated;
309}
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000310EXPORT_SYMBOL_GPL(list_lru_walk_node);
311
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800312static void init_one_lru(struct list_lru_one *l)
313{
314 INIT_LIST_HEAD(&l->list);
315 l->nr_items = 0;
316}
317
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700318#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800319static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
320 int begin, int end)
321{
322 int i;
323
324 for (i = begin; i < end; i++)
325 kfree(memcg_lrus->lru[i]);
326}
327
328static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
329 int begin, int end)
330{
331 int i;
332
333 for (i = begin; i < end; i++) {
334 struct list_lru_one *l;
335
336 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
337 if (!l)
338 goto fail;
339
340 init_one_lru(l);
341 memcg_lrus->lru[i] = l;
342 }
343 return 0;
344fail:
345 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1);
346 return -ENOMEM;
347}
348
349static int memcg_init_list_lru_node(struct list_lru_node *nlru)
350{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700351 struct list_lru_memcg *memcg_lrus;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800352 int size = memcg_nr_cache_ids;
353
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700354 memcg_lrus = kvmalloc(sizeof(*memcg_lrus) +
355 size * sizeof(void *), GFP_KERNEL);
356 if (!memcg_lrus)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800357 return -ENOMEM;
358
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700359 if (__memcg_init_list_lru_node(memcg_lrus, 0, size)) {
360 kvfree(memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800361 return -ENOMEM;
362 }
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700363 RCU_INIT_POINTER(nlru->memcg_lrus, memcg_lrus);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800364
365 return 0;
366}
367
368static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
369{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700370 struct list_lru_memcg *memcg_lrus;
371 /*
372 * This is called when shrinker has already been unregistered,
373 * and nobody can use it. So, there is no need to use kvfree_rcu().
374 */
375 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus, true);
376 __memcg_destroy_list_lru_node(memcg_lrus, 0, memcg_nr_cache_ids);
377 kvfree(memcg_lrus);
378}
379
380static void kvfree_rcu(struct rcu_head *head)
381{
382 struct list_lru_memcg *mlru;
383
384 mlru = container_of(head, struct list_lru_memcg, rcu);
385 kvfree(mlru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800386}
387
388static int memcg_update_list_lru_node(struct list_lru_node *nlru,
389 int old_size, int new_size)
390{
391 struct list_lru_memcg *old, *new;
392
393 BUG_ON(old_size > new_size);
394
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700395 old = rcu_dereference_protected(nlru->memcg_lrus,
396 lockdep_is_held(&list_lrus_mutex));
397 new = kvmalloc(sizeof(*new) + new_size * sizeof(void *), GFP_KERNEL);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800398 if (!new)
399 return -ENOMEM;
400
401 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
Johannes Weinerf80c7da2017-10-03 16:16:10 -0700402 kvfree(new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800403 return -ENOMEM;
404 }
405
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700406 memcpy(&new->lru, &old->lru, old_size * sizeof(void *));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800407
408 /*
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700409 * The locking below allows readers that hold nlru->lock avoid taking
410 * rcu_read_lock (see list_lru_from_memcg_idx).
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800411 *
412 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
413 * we have to use IRQ-safe primitives here to avoid deadlock.
414 */
415 spin_lock_irq(&nlru->lock);
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700416 rcu_assign_pointer(nlru->memcg_lrus, new);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800417 spin_unlock_irq(&nlru->lock);
418
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700419 call_rcu(&old->rcu, kvfree_rcu);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800420 return 0;
421}
422
423static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
424 int old_size, int new_size)
425{
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700426 struct list_lru_memcg *memcg_lrus;
427
428 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus,
429 lockdep_is_held(&list_lrus_mutex));
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800430 /* do not bother shrinking the array back to the old size, because we
431 * cannot handle allocation failures here */
Kirill Tkhai0c7c1be2018-04-05 16:25:08 -0700432 __memcg_destroy_list_lru_node(memcg_lrus, old_size, new_size);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800433}
434
435static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
436{
437 int i;
438
Raghavendra K T145949a2015-11-05 18:46:26 -0800439 if (!memcg_aware)
440 return 0;
441
442 for_each_node(i) {
443 if (memcg_init_list_lru_node(&lru->node[i]))
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800444 goto fail;
445 }
446 return 0;
447fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800448 for (i = i - 1; i >= 0; i--) {
449 if (!lru->node[i].memcg_lrus)
450 continue;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800451 memcg_destroy_list_lru_node(&lru->node[i]);
Raghavendra K T145949a2015-11-05 18:46:26 -0800452 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800453 return -ENOMEM;
454}
455
456static void memcg_destroy_list_lru(struct list_lru *lru)
457{
458 int i;
459
460 if (!list_lru_memcg_aware(lru))
461 return;
462
Raghavendra K T145949a2015-11-05 18:46:26 -0800463 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800464 memcg_destroy_list_lru_node(&lru->node[i]);
465}
466
467static int memcg_update_list_lru(struct list_lru *lru,
468 int old_size, int new_size)
469{
470 int i;
471
472 if (!list_lru_memcg_aware(lru))
473 return 0;
474
Raghavendra K T145949a2015-11-05 18:46:26 -0800475 for_each_node(i) {
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800476 if (memcg_update_list_lru_node(&lru->node[i],
477 old_size, new_size))
478 goto fail;
479 }
480 return 0;
481fail:
Raghavendra K T145949a2015-11-05 18:46:26 -0800482 for (i = i - 1; i >= 0; i--) {
483 if (!lru->node[i].memcg_lrus)
484 continue;
485
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800486 memcg_cancel_update_list_lru_node(&lru->node[i],
487 old_size, new_size);
Raghavendra K T145949a2015-11-05 18:46:26 -0800488 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800489 return -ENOMEM;
490}
491
492static void memcg_cancel_update_list_lru(struct list_lru *lru,
493 int old_size, int new_size)
494{
495 int i;
496
497 if (!list_lru_memcg_aware(lru))
498 return;
499
Raghavendra K T145949a2015-11-05 18:46:26 -0800500 for_each_node(i)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800501 memcg_cancel_update_list_lru_node(&lru->node[i],
502 old_size, new_size);
503}
504
505int memcg_update_all_list_lrus(int new_size)
506{
507 int ret = 0;
508 struct list_lru *lru;
509 int old_size = memcg_nr_cache_ids;
510
511 mutex_lock(&list_lrus_mutex);
512 list_for_each_entry(lru, &list_lrus, list) {
513 ret = memcg_update_list_lru(lru, old_size, new_size);
514 if (ret)
515 goto fail;
516 }
517out:
518 mutex_unlock(&list_lrus_mutex);
519 return ret;
520fail:
521 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
522 memcg_cancel_update_list_lru(lru, old_size, new_size);
523 goto out;
524}
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800525
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700526static void memcg_drain_list_lru_node(struct list_lru *lru, int nid,
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700527 int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800528{
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700529 struct list_lru_node *nlru = &lru->node[nid];
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700530 int dst_idx = dst_memcg->kmemcg_id;
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800531 struct list_lru_one *src, *dst;
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700532 bool set;
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800533
534 /*
535 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
536 * we have to use IRQ-safe primitives here to avoid deadlock.
537 */
538 spin_lock_irq(&nlru->lock);
539
540 src = list_lru_from_memcg_idx(nlru, src_idx);
541 dst = list_lru_from_memcg_idx(nlru, dst_idx);
542
543 list_splice_init(&src->list, &dst->list);
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700544 set = (!dst->nr_items && src->nr_items);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800545 dst->nr_items += src->nr_items;
Kirill Tkhaifae91d62018-08-17 15:48:10 -0700546 if (set)
547 memcg_set_shrinker_bit(dst_memcg, nid, lru_shrinker_id(lru));
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800548 src->nr_items = 0;
549
550 spin_unlock_irq(&nlru->lock);
551}
552
553static void memcg_drain_list_lru(struct list_lru *lru,
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700554 int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800555{
556 int i;
557
558 if (!list_lru_memcg_aware(lru))
559 return;
560
Raghavendra K T145949a2015-11-05 18:46:26 -0800561 for_each_node(i)
Kirill Tkhai3b82c4d2018-08-17 15:48:01 -0700562 memcg_drain_list_lru_node(lru, i, src_idx, dst_memcg);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800563}
564
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700565void memcg_drain_all_list_lrus(int src_idx, struct mem_cgroup *dst_memcg)
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800566{
567 struct list_lru *lru;
568
569 mutex_lock(&list_lrus_mutex);
570 list_for_each_entry(lru, &list_lrus, list)
Kirill Tkhai9bec5c32018-08-17 15:47:58 -0700571 memcg_drain_list_lru(lru, src_idx, dst_memcg);
Vladimir Davydov2788cf02015-02-12 14:59:38 -0800572 mutex_unlock(&list_lrus_mutex);
573}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800574#else
575static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
576{
577 return 0;
578}
579
580static void memcg_destroy_list_lru(struct list_lru *lru)
581{
582}
Kirill Tkhai84c07d12018-08-17 15:47:25 -0700583#endif /* CONFIG_MEMCG_KMEM */
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800584
585int __list_lru_init(struct list_lru *lru, bool memcg_aware,
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700586 struct lock_class_key *key, struct shrinker *shrinker)
Dave Chinnera38e4082013-08-28 10:17:58 +1000587{
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000588 int i;
Glauber Costa5ca302c2013-08-28 10:18:18 +1000589 size_t size = sizeof(*lru->node) * nr_node_ids;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800590 int err = -ENOMEM;
591
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700592#ifdef CONFIG_MEMCG_KMEM
593 if (shrinker)
594 lru->shrinker_id = shrinker->id;
595 else
596 lru->shrinker_id = -1;
597#endif
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800598 memcg_get_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000599
600 lru->node = kzalloc(size, GFP_KERNEL);
601 if (!lru->node)
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800602 goto out;
Dave Chinnera38e4082013-08-28 10:17:58 +1000603
Raghavendra K T145949a2015-11-05 18:46:26 -0800604 for_each_node(i) {
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000605 spin_lock_init(&lru->node[i].lock);
Johannes Weiner449dd692014-04-03 14:47:56 -0700606 if (key)
607 lockdep_set_class(&lru->node[i].lock, key);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800608 init_one_lru(&lru->node[i].lru);
Dave Chinner3b1d58a2013-08-28 10:18:00 +1000609 }
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800610
611 err = memcg_init_list_lru(lru, memcg_aware);
612 if (err) {
613 kfree(lru->node);
Alexander Polakov1bc11d72016-10-27 17:46:27 -0700614 /* Do this so a list_lru_destroy() doesn't crash: */
615 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800616 goto out;
617 }
618
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800619 list_lru_register(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800620out:
621 memcg_put_cache_ids();
622 return err;
Dave Chinnera38e4082013-08-28 10:17:58 +1000623}
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800624EXPORT_SYMBOL_GPL(__list_lru_init);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000625
626void list_lru_destroy(struct list_lru *lru)
627{
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800628 /* Already destroyed or not yet initialized? */
629 if (!lru->node)
630 return;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800631
632 memcg_get_cache_ids();
633
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800634 list_lru_unregister(lru);
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800635
636 memcg_destroy_list_lru(lru);
Glauber Costa5ca302c2013-08-28 10:18:18 +1000637 kfree(lru->node);
Vladimir Davydovc0a5b562015-02-12 14:59:07 -0800638 lru->node = NULL;
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800639
Kirill Tkhaic92e8e12018-08-17 15:47:50 -0700640#ifdef CONFIG_MEMCG_KMEM
641 lru->shrinker_id = -1;
642#endif
Vladimir Davydov60d3fd32015-02-12 14:59:10 -0800643 memcg_put_cache_ids();
Glauber Costa5ca302c2013-08-28 10:18:18 +1000644}
645EXPORT_SYMBOL_GPL(list_lru_destroy);