Merge tag 'mips_fixes_4.18_1' of git://git.kernel.org/pub/scm/linux/kernel/git/mips...
[linux-2.6-block.git] / mm / list_lru.c
CommitLineData
a38e4082
DC
1/*
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>
3b1d58a4 9#include <linux/mm.h>
a38e4082 10#include <linux/list_lru.h>
5ca302c8 11#include <linux/slab.h>
c0a5b560 12#include <linux/mutex.h>
60d3fd32 13#include <linux/memcontrol.h>
c0a5b560 14
127424c8 15#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
c0a5b560
VD
16static 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}
127424c8 40#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
a38e4082 41
127424c8 42#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
60d3fd32
VD
43static inline bool list_lru_memcg_aware(struct list_lru *lru)
44{
145949a1
R
45 /*
46 * This needs node 0 to be always present, even
47 * in the systems supporting sparse numa ids.
48 */
60d3fd32
VD
49 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{
0c7c1bed 55 struct list_lru_memcg *memcg_lrus;
60d3fd32 56 /*
0c7c1bed
KT
57 * Either lock or RCU protects the array of per cgroup lists
58 * from relocation (see memcg_update_list_lru_node).
60d3fd32 59 */
0c7c1bed
KT
60 memcg_lrus = rcu_dereference_check(nlru->memcg_lrus,
61 lockdep_is_held(&nlru->lock));
62 if (memcg_lrus && idx >= 0)
63 return memcg_lrus->lru[idx];
60d3fd32
VD
64 return &nlru->lru;
65}
66
df406551
VD
67static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr)
68{
69 struct page *page;
70
71 if (!memcg_kmem_enabled())
72 return NULL;
73 page = virt_to_head_page(ptr);
74 return page->mem_cgroup;
75}
76
60d3fd32
VD
77static inline struct list_lru_one *
78list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
79{
80 struct mem_cgroup *memcg;
81
82 if (!nlru->memcg_lrus)
83 return &nlru->lru;
84
85 memcg = mem_cgroup_from_kmem(ptr);
86 if (!memcg)
87 return &nlru->lru;
88
89 return list_lru_from_memcg_idx(nlru, memcg_cache_id(memcg));
90}
91#else
92static inline bool list_lru_memcg_aware(struct list_lru *lru)
93{
94 return false;
95}
96
97static inline struct list_lru_one *
98list_lru_from_memcg_idx(struct list_lru_node *nlru, int idx)
99{
100 return &nlru->lru;
101}
102
103static inline struct list_lru_one *
104list_lru_from_kmem(struct list_lru_node *nlru, void *ptr)
105{
106 return &nlru->lru;
107}
127424c8 108#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
60d3fd32 109
a38e4082
DC
110bool list_lru_add(struct list_lru *lru, struct list_head *item)
111{
3b1d58a4
DC
112 int nid = page_to_nid(virt_to_page(item));
113 struct list_lru_node *nlru = &lru->node[nid];
60d3fd32 114 struct list_lru_one *l;
3b1d58a4
DC
115
116 spin_lock(&nlru->lock);
a38e4082 117 if (list_empty(item)) {
26f5d760 118 l = list_lru_from_kmem(nlru, item);
60d3fd32
VD
119 list_add_tail(item, &l->list);
120 l->nr_items++;
2c80cd57 121 nlru->nr_items++;
3b1d58a4 122 spin_unlock(&nlru->lock);
a38e4082
DC
123 return true;
124 }
3b1d58a4 125 spin_unlock(&nlru->lock);
a38e4082
DC
126 return false;
127}
128EXPORT_SYMBOL_GPL(list_lru_add);
129
130bool list_lru_del(struct list_lru *lru, struct list_head *item)
131{
3b1d58a4
DC
132 int nid = page_to_nid(virt_to_page(item));
133 struct list_lru_node *nlru = &lru->node[nid];
60d3fd32 134 struct list_lru_one *l;
3b1d58a4
DC
135
136 spin_lock(&nlru->lock);
a38e4082 137 if (!list_empty(item)) {
26f5d760 138 l = list_lru_from_kmem(nlru, item);
a38e4082 139 list_del_init(item);
60d3fd32 140 l->nr_items--;
2c80cd57 141 nlru->nr_items--;
3b1d58a4 142 spin_unlock(&nlru->lock);
a38e4082
DC
143 return true;
144 }
3b1d58a4 145 spin_unlock(&nlru->lock);
a38e4082
DC
146 return false;
147}
148EXPORT_SYMBOL_GPL(list_lru_del);
149
3f97b163
VD
150void list_lru_isolate(struct list_lru_one *list, struct list_head *item)
151{
152 list_del_init(item);
153 list->nr_items--;
154}
155EXPORT_SYMBOL_GPL(list_lru_isolate);
156
157void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
158 struct list_head *head)
159{
160 list_move(item, head);
161 list->nr_items--;
162}
163EXPORT_SYMBOL_GPL(list_lru_isolate_move);
164
60d3fd32
VD
165static unsigned long __list_lru_count_one(struct list_lru *lru,
166 int nid, int memcg_idx)
a38e4082 167{
6a4f496f 168 struct list_lru_node *nlru = &lru->node[nid];
60d3fd32
VD
169 struct list_lru_one *l;
170 unsigned long count;
3b1d58a4 171
0c7c1bed 172 rcu_read_lock();
60d3fd32 173 l = list_lru_from_memcg_idx(nlru, memcg_idx);
60d3fd32 174 count = l->nr_items;
0c7c1bed 175 rcu_read_unlock();
3b1d58a4
DC
176
177 return count;
178}
60d3fd32
VD
179
180unsigned long list_lru_count_one(struct list_lru *lru,
181 int nid, struct mem_cgroup *memcg)
182{
183 return __list_lru_count_one(lru, nid, memcg_cache_id(memcg));
184}
185EXPORT_SYMBOL_GPL(list_lru_count_one);
186
187unsigned long list_lru_count_node(struct list_lru *lru, int nid)
188{
2c80cd57 189 struct list_lru_node *nlru;
60d3fd32 190
2c80cd57
ST
191 nlru = &lru->node[nid];
192 return nlru->nr_items;
60d3fd32 193}
6a4f496f 194EXPORT_SYMBOL_GPL(list_lru_count_node);
3b1d58a4 195
60d3fd32
VD
196static unsigned long
197__list_lru_walk_one(struct list_lru *lru, int nid, int memcg_idx,
198 list_lru_walk_cb isolate, void *cb_arg,
199 unsigned long *nr_to_walk)
3b1d58a4
DC
200{
201
60d3fd32
VD
202 struct list_lru_node *nlru = &lru->node[nid];
203 struct list_lru_one *l;
a38e4082 204 struct list_head *item, *n;
3b1d58a4 205 unsigned long isolated = 0;
a38e4082 206
3b1d58a4 207 spin_lock(&nlru->lock);
60d3fd32 208 l = list_lru_from_memcg_idx(nlru, memcg_idx);
a38e4082 209restart:
60d3fd32 210 list_for_each_safe(item, n, &l->list) {
a38e4082 211 enum lru_status ret;
5cedf721
DC
212
213 /*
214 * decrement nr_to_walk first so that we don't livelock if we
215 * get stuck on large numbesr of LRU_RETRY items
216 */
c56b097a 217 if (!*nr_to_walk)
5cedf721 218 break;
c56b097a 219 --*nr_to_walk;
5cedf721 220
3f97b163 221 ret = isolate(item, l, &nlru->lock, cb_arg);
a38e4082 222 switch (ret) {
449dd698
JW
223 case LRU_REMOVED_RETRY:
224 assert_spin_locked(&nlru->lock);
5b568acc 225 /* fall through */
a38e4082 226 case LRU_REMOVED:
3b1d58a4 227 isolated++;
2c80cd57 228 nlru->nr_items--;
449dd698
JW
229 /*
230 * If the lru lock has been dropped, our list
231 * traversal is now invalid and so we have to
232 * restart from scratch.
233 */
234 if (ret == LRU_REMOVED_RETRY)
235 goto restart;
a38e4082
DC
236 break;
237 case LRU_ROTATE:
60d3fd32 238 list_move_tail(item, &l->list);
a38e4082
DC
239 break;
240 case LRU_SKIP:
241 break;
242 case LRU_RETRY:
5cedf721
DC
243 /*
244 * The lru lock has been dropped, our list traversal is
245 * now invalid and so we have to restart from scratch.
246 */
449dd698 247 assert_spin_locked(&nlru->lock);
a38e4082
DC
248 goto restart;
249 default:
250 BUG();
251 }
a38e4082 252 }
3b1d58a4
DC
253
254 spin_unlock(&nlru->lock);
255 return isolated;
256}
60d3fd32
VD
257
258unsigned long
259list_lru_walk_one(struct list_lru *lru, int nid, struct mem_cgroup *memcg,
260 list_lru_walk_cb isolate, void *cb_arg,
261 unsigned long *nr_to_walk)
262{
263 return __list_lru_walk_one(lru, nid, memcg_cache_id(memcg),
264 isolate, cb_arg, nr_to_walk);
265}
266EXPORT_SYMBOL_GPL(list_lru_walk_one);
267
268unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
269 list_lru_walk_cb isolate, void *cb_arg,
270 unsigned long *nr_to_walk)
271{
272 long isolated = 0;
273 int memcg_idx;
274
275 isolated += __list_lru_walk_one(lru, nid, -1, isolate, cb_arg,
276 nr_to_walk);
277 if (*nr_to_walk > 0 && list_lru_memcg_aware(lru)) {
278 for_each_memcg_cache_index(memcg_idx) {
279 isolated += __list_lru_walk_one(lru, nid, memcg_idx,
280 isolate, cb_arg, nr_to_walk);
281 if (*nr_to_walk <= 0)
282 break;
283 }
284 }
285 return isolated;
286}
3b1d58a4
DC
287EXPORT_SYMBOL_GPL(list_lru_walk_node);
288
60d3fd32
VD
289static void init_one_lru(struct list_lru_one *l)
290{
291 INIT_LIST_HEAD(&l->list);
292 l->nr_items = 0;
293}
294
127424c8 295#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
60d3fd32
VD
296static void __memcg_destroy_list_lru_node(struct list_lru_memcg *memcg_lrus,
297 int begin, int end)
298{
299 int i;
300
301 for (i = begin; i < end; i++)
302 kfree(memcg_lrus->lru[i]);
303}
304
305static int __memcg_init_list_lru_node(struct list_lru_memcg *memcg_lrus,
306 int begin, int end)
307{
308 int i;
309
310 for (i = begin; i < end; i++) {
311 struct list_lru_one *l;
312
313 l = kmalloc(sizeof(struct list_lru_one), GFP_KERNEL);
314 if (!l)
315 goto fail;
316
317 init_one_lru(l);
318 memcg_lrus->lru[i] = l;
319 }
320 return 0;
321fail:
322 __memcg_destroy_list_lru_node(memcg_lrus, begin, i - 1);
323 return -ENOMEM;
324}
325
326static int memcg_init_list_lru_node(struct list_lru_node *nlru)
327{
0c7c1bed 328 struct list_lru_memcg *memcg_lrus;
60d3fd32
VD
329 int size = memcg_nr_cache_ids;
330
0c7c1bed
KT
331 memcg_lrus = kvmalloc(sizeof(*memcg_lrus) +
332 size * sizeof(void *), GFP_KERNEL);
333 if (!memcg_lrus)
60d3fd32
VD
334 return -ENOMEM;
335
0c7c1bed
KT
336 if (__memcg_init_list_lru_node(memcg_lrus, 0, size)) {
337 kvfree(memcg_lrus);
60d3fd32
VD
338 return -ENOMEM;
339 }
0c7c1bed 340 RCU_INIT_POINTER(nlru->memcg_lrus, memcg_lrus);
60d3fd32
VD
341
342 return 0;
343}
344
345static void memcg_destroy_list_lru_node(struct list_lru_node *nlru)
346{
0c7c1bed
KT
347 struct list_lru_memcg *memcg_lrus;
348 /*
349 * This is called when shrinker has already been unregistered,
350 * and nobody can use it. So, there is no need to use kvfree_rcu().
351 */
352 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus, true);
353 __memcg_destroy_list_lru_node(memcg_lrus, 0, memcg_nr_cache_ids);
354 kvfree(memcg_lrus);
355}
356
357static void kvfree_rcu(struct rcu_head *head)
358{
359 struct list_lru_memcg *mlru;
360
361 mlru = container_of(head, struct list_lru_memcg, rcu);
362 kvfree(mlru);
60d3fd32
VD
363}
364
365static int memcg_update_list_lru_node(struct list_lru_node *nlru,
366 int old_size, int new_size)
367{
368 struct list_lru_memcg *old, *new;
369
370 BUG_ON(old_size > new_size);
371
0c7c1bed
KT
372 old = rcu_dereference_protected(nlru->memcg_lrus,
373 lockdep_is_held(&list_lrus_mutex));
374 new = kvmalloc(sizeof(*new) + new_size * sizeof(void *), GFP_KERNEL);
60d3fd32
VD
375 if (!new)
376 return -ENOMEM;
377
378 if (__memcg_init_list_lru_node(new, old_size, new_size)) {
f80c7dab 379 kvfree(new);
60d3fd32
VD
380 return -ENOMEM;
381 }
382
0c7c1bed 383 memcpy(&new->lru, &old->lru, old_size * sizeof(void *));
60d3fd32
VD
384
385 /*
0c7c1bed
KT
386 * The locking below allows readers that hold nlru->lock avoid taking
387 * rcu_read_lock (see list_lru_from_memcg_idx).
60d3fd32
VD
388 *
389 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
390 * we have to use IRQ-safe primitives here to avoid deadlock.
391 */
392 spin_lock_irq(&nlru->lock);
0c7c1bed 393 rcu_assign_pointer(nlru->memcg_lrus, new);
60d3fd32
VD
394 spin_unlock_irq(&nlru->lock);
395
0c7c1bed 396 call_rcu(&old->rcu, kvfree_rcu);
60d3fd32
VD
397 return 0;
398}
399
400static void memcg_cancel_update_list_lru_node(struct list_lru_node *nlru,
401 int old_size, int new_size)
402{
0c7c1bed
KT
403 struct list_lru_memcg *memcg_lrus;
404
405 memcg_lrus = rcu_dereference_protected(nlru->memcg_lrus,
406 lockdep_is_held(&list_lrus_mutex));
60d3fd32
VD
407 /* do not bother shrinking the array back to the old size, because we
408 * cannot handle allocation failures here */
0c7c1bed 409 __memcg_destroy_list_lru_node(memcg_lrus, old_size, new_size);
60d3fd32
VD
410}
411
412static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
413{
414 int i;
415
145949a1
R
416 if (!memcg_aware)
417 return 0;
418
419 for_each_node(i) {
420 if (memcg_init_list_lru_node(&lru->node[i]))
60d3fd32
VD
421 goto fail;
422 }
423 return 0;
424fail:
145949a1
R
425 for (i = i - 1; i >= 0; i--) {
426 if (!lru->node[i].memcg_lrus)
427 continue;
60d3fd32 428 memcg_destroy_list_lru_node(&lru->node[i]);
145949a1 429 }
60d3fd32
VD
430 return -ENOMEM;
431}
432
433static void memcg_destroy_list_lru(struct list_lru *lru)
434{
435 int i;
436
437 if (!list_lru_memcg_aware(lru))
438 return;
439
145949a1 440 for_each_node(i)
60d3fd32
VD
441 memcg_destroy_list_lru_node(&lru->node[i]);
442}
443
444static int memcg_update_list_lru(struct list_lru *lru,
445 int old_size, int new_size)
446{
447 int i;
448
449 if (!list_lru_memcg_aware(lru))
450 return 0;
451
145949a1 452 for_each_node(i) {
60d3fd32
VD
453 if (memcg_update_list_lru_node(&lru->node[i],
454 old_size, new_size))
455 goto fail;
456 }
457 return 0;
458fail:
145949a1
R
459 for (i = i - 1; i >= 0; i--) {
460 if (!lru->node[i].memcg_lrus)
461 continue;
462
60d3fd32
VD
463 memcg_cancel_update_list_lru_node(&lru->node[i],
464 old_size, new_size);
145949a1 465 }
60d3fd32
VD
466 return -ENOMEM;
467}
468
469static void memcg_cancel_update_list_lru(struct list_lru *lru,
470 int old_size, int new_size)
471{
472 int i;
473
474 if (!list_lru_memcg_aware(lru))
475 return;
476
145949a1 477 for_each_node(i)
60d3fd32
VD
478 memcg_cancel_update_list_lru_node(&lru->node[i],
479 old_size, new_size);
480}
481
482int memcg_update_all_list_lrus(int new_size)
483{
484 int ret = 0;
485 struct list_lru *lru;
486 int old_size = memcg_nr_cache_ids;
487
488 mutex_lock(&list_lrus_mutex);
489 list_for_each_entry(lru, &list_lrus, list) {
490 ret = memcg_update_list_lru(lru, old_size, new_size);
491 if (ret)
492 goto fail;
493 }
494out:
495 mutex_unlock(&list_lrus_mutex);
496 return ret;
497fail:
498 list_for_each_entry_continue_reverse(lru, &list_lrus, list)
499 memcg_cancel_update_list_lru(lru, old_size, new_size);
500 goto out;
501}
2788cf0c
VD
502
503static void memcg_drain_list_lru_node(struct list_lru_node *nlru,
504 int src_idx, int dst_idx)
505{
506 struct list_lru_one *src, *dst;
507
508 /*
509 * Since list_lru_{add,del} may be called under an IRQ-safe lock,
510 * we have to use IRQ-safe primitives here to avoid deadlock.
511 */
512 spin_lock_irq(&nlru->lock);
513
514 src = list_lru_from_memcg_idx(nlru, src_idx);
515 dst = list_lru_from_memcg_idx(nlru, dst_idx);
516
517 list_splice_init(&src->list, &dst->list);
518 dst->nr_items += src->nr_items;
519 src->nr_items = 0;
520
521 spin_unlock_irq(&nlru->lock);
522}
523
524static void memcg_drain_list_lru(struct list_lru *lru,
525 int src_idx, int dst_idx)
526{
527 int i;
528
529 if (!list_lru_memcg_aware(lru))
530 return;
531
145949a1 532 for_each_node(i)
2788cf0c
VD
533 memcg_drain_list_lru_node(&lru->node[i], src_idx, dst_idx);
534}
535
536void memcg_drain_all_list_lrus(int src_idx, int dst_idx)
537{
538 struct list_lru *lru;
539
540 mutex_lock(&list_lrus_mutex);
541 list_for_each_entry(lru, &list_lrus, list)
542 memcg_drain_list_lru(lru, src_idx, dst_idx);
543 mutex_unlock(&list_lrus_mutex);
544}
60d3fd32
VD
545#else
546static int memcg_init_list_lru(struct list_lru *lru, bool memcg_aware)
547{
548 return 0;
549}
550
551static void memcg_destroy_list_lru(struct list_lru *lru)
552{
553}
127424c8 554#endif /* CONFIG_MEMCG && !CONFIG_SLOB */
60d3fd32
VD
555
556int __list_lru_init(struct list_lru *lru, bool memcg_aware,
557 struct lock_class_key *key)
a38e4082 558{
3b1d58a4 559 int i;
5ca302c8 560 size_t size = sizeof(*lru->node) * nr_node_ids;
60d3fd32
VD
561 int err = -ENOMEM;
562
563 memcg_get_cache_ids();
5ca302c8
GC
564
565 lru->node = kzalloc(size, GFP_KERNEL);
566 if (!lru->node)
60d3fd32 567 goto out;
a38e4082 568
145949a1 569 for_each_node(i) {
3b1d58a4 570 spin_lock_init(&lru->node[i].lock);
449dd698
JW
571 if (key)
572 lockdep_set_class(&lru->node[i].lock, key);
60d3fd32
VD
573 init_one_lru(&lru->node[i].lru);
574 }
575
576 err = memcg_init_list_lru(lru, memcg_aware);
577 if (err) {
578 kfree(lru->node);
1bc11d70
AP
579 /* Do this so a list_lru_destroy() doesn't crash: */
580 lru->node = NULL;
60d3fd32 581 goto out;
3b1d58a4 582 }
60d3fd32 583
c0a5b560 584 list_lru_register(lru);
60d3fd32
VD
585out:
586 memcg_put_cache_ids();
587 return err;
a38e4082 588}
60d3fd32 589EXPORT_SYMBOL_GPL(__list_lru_init);
5ca302c8
GC
590
591void list_lru_destroy(struct list_lru *lru)
592{
c0a5b560
VD
593 /* Already destroyed or not yet initialized? */
594 if (!lru->node)
595 return;
60d3fd32
VD
596
597 memcg_get_cache_ids();
598
c0a5b560 599 list_lru_unregister(lru);
60d3fd32
VD
600
601 memcg_destroy_list_lru(lru);
5ca302c8 602 kfree(lru->node);
c0a5b560 603 lru->node = NULL;
60d3fd32
VD
604
605 memcg_put_cache_ids();
5ca302c8
GC
606}
607EXPORT_SYMBOL_GPL(list_lru_destroy);