]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/list_lru.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.git] / include / linux / list_lru.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
a38e4082
DC
2/*
3 * Copyright (c) 2013 Red Hat, Inc. and Parallels Inc. All rights reserved.
4 * Authors: David Chinner and Glauber Costa
5 *
6 * Generic LRU infrastructure
7 */
8#ifndef _LRU_LIST_H
9#define _LRU_LIST_H
10
11#include <linux/list.h>
3b1d58a4 12#include <linux/nodemask.h>
503c358c 13#include <linux/shrinker.h>
a38e4082 14
60d3fd32
VD
15struct mem_cgroup;
16
a38e4082
DC
17/* list_lru_walk_cb has to always return one of those */
18enum lru_status {
19 LRU_REMOVED, /* item removed from list */
449dd698
JW
20 LRU_REMOVED_RETRY, /* item removed, but lock has been
21 dropped and reacquired */
a38e4082
DC
22 LRU_ROTATE, /* item referenced, give another pass */
23 LRU_SKIP, /* item cannot be locked, skip */
24 LRU_RETRY, /* item not freeable. May drop the lock
25 internally, but has to return locked. */
26};
27
60d3fd32 28struct list_lru_one {
a38e4082 29 struct list_head list;
2788cf0c 30 /* may become negative during memcg reparenting */
a38e4082 31 long nr_items;
60d3fd32
VD
32};
33
34struct list_lru_memcg {
35 /* array of per cgroup lists, indexed by memcg_cache_id */
36 struct list_lru_one *lru[0];
37};
38
39struct list_lru_node {
40 /* protects all lists on the node, including per cgroup */
41 spinlock_t lock;
42 /* global list, used for the root cgroup in cgroup aware lrus */
43 struct list_lru_one lru;
127424c8 44#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
60d3fd32
VD
45 /* for cgroup aware lrus points to per cgroup lists, otherwise NULL */
46 struct list_lru_memcg *memcg_lrus;
47#endif
2c80cd57 48 long nr_items;
3b1d58a4
DC
49} ____cacheline_aligned_in_smp;
50
51struct list_lru {
5ca302c8 52 struct list_lru_node *node;
127424c8 53#if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
c0a5b560 54 struct list_head list;
1fce7ba2 55 bool memcg_aware;
c0a5b560 56#endif
a38e4082
DC
57};
58
5ca302c8 59void list_lru_destroy(struct list_lru *lru);
60d3fd32
VD
60int __list_lru_init(struct list_lru *lru, bool memcg_aware,
61 struct lock_class_key *key);
62
63#define list_lru_init(lru) __list_lru_init((lru), false, NULL)
64#define list_lru_init_key(lru, key) __list_lru_init((lru), false, (key))
65#define list_lru_init_memcg(lru) __list_lru_init((lru), true, NULL)
66
67int memcg_update_all_list_lrus(int num_memcgs);
2788cf0c 68void memcg_drain_all_list_lrus(int src_idx, int dst_idx);
a38e4082
DC
69
70/**
71 * list_lru_add: add an element to the lru list's tail
72 * @list_lru: the lru pointer
73 * @item: the item to be added.
74 *
75 * If the element is already part of a list, this function returns doing
76 * nothing. Therefore the caller does not need to keep state about whether or
77 * not the element already belongs in the list and is allowed to lazy update
78 * it. Note however that this is valid for *a* list, not *this* list. If
79 * the caller organize itself in a way that elements can be in more than
80 * one type of list, it is up to the caller to fully remove the item from
81 * the previous list (with list_lru_del() for instance) before moving it
82 * to @list_lru
83 *
84 * Return value: true if the list was updated, false otherwise
85 */
86bool list_lru_add(struct list_lru *lru, struct list_head *item);
87
88/**
89 * list_lru_del: delete an element to the lru list
90 * @list_lru: the lru pointer
91 * @item: the item to be deleted.
92 *
93 * This function works analogously as list_lru_add in terms of list
94 * manipulation. The comments about an element already pertaining to
95 * a list are also valid for list_lru_del.
96 *
97 * Return value: true if the list was updated, false otherwise
98 */
99bool list_lru_del(struct list_lru *lru, struct list_head *item);
100
101/**
60d3fd32 102 * list_lru_count_one: return the number of objects currently held by @lru
a38e4082 103 * @lru: the lru pointer.
6a4f496f 104 * @nid: the node id to count from.
60d3fd32 105 * @memcg: the cgroup to count from.
a38e4082
DC
106 *
107 * Always return a non-negative number, 0 for empty lists. There is no
108 * guarantee that the list is not updated while the count is being computed.
109 * Callers that want such a guarantee need to provide an outer lock.
110 */
60d3fd32
VD
111unsigned long list_lru_count_one(struct list_lru *lru,
112 int nid, struct mem_cgroup *memcg);
6a4f496f 113unsigned long list_lru_count_node(struct list_lru *lru, int nid);
503c358c
VD
114
115static inline unsigned long list_lru_shrink_count(struct list_lru *lru,
116 struct shrink_control *sc)
117{
60d3fd32 118 return list_lru_count_one(lru, sc->nid, sc->memcg);
503c358c
VD
119}
120
6a4f496f
GC
121static inline unsigned long list_lru_count(struct list_lru *lru)
122{
123 long count = 0;
124 int nid;
125
ff0b67ef 126 for_each_node_state(nid, N_NORMAL_MEMORY)
6a4f496f
GC
127 count += list_lru_count_node(lru, nid);
128
129 return count;
130}
a38e4082 131
3f97b163
VD
132void list_lru_isolate(struct list_lru_one *list, struct list_head *item);
133void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item,
134 struct list_head *head);
135
136typedef enum lru_status (*list_lru_walk_cb)(struct list_head *item,
137 struct list_lru_one *list, spinlock_t *lock, void *cb_arg);
138
a38e4082 139/**
60d3fd32 140 * list_lru_walk_one: walk a list_lru, isolating and disposing freeable items.
a38e4082 141 * @lru: the lru pointer.
6a4f496f 142 * @nid: the node id to scan from.
60d3fd32 143 * @memcg: the cgroup to scan from.
a38e4082
DC
144 * @isolate: callback function that is resposible for deciding what to do with
145 * the item currently being scanned
146 * @cb_arg: opaque type that will be passed to @isolate
147 * @nr_to_walk: how many items to scan.
148 *
149 * This function will scan all elements in a particular list_lru, calling the
150 * @isolate callback for each of those items, along with the current list
151 * spinlock and a caller-provided opaque. The @isolate callback can choose to
152 * drop the lock internally, but *must* return with the lock held. The callback
153 * will return an enum lru_status telling the list_lru infrastructure what to
154 * do with the object being scanned.
155 *
156 * Please note that nr_to_walk does not mean how many objects will be freed,
157 * just how many objects will be scanned.
158 *
159 * Return value: the number of objects effectively removed from the LRU.
160 */
60d3fd32
VD
161unsigned long list_lru_walk_one(struct list_lru *lru,
162 int nid, struct mem_cgroup *memcg,
163 list_lru_walk_cb isolate, void *cb_arg,
164 unsigned long *nr_to_walk);
6a4f496f
GC
165unsigned long list_lru_walk_node(struct list_lru *lru, int nid,
166 list_lru_walk_cb isolate, void *cb_arg,
167 unsigned long *nr_to_walk);
168
503c358c
VD
169static inline unsigned long
170list_lru_shrink_walk(struct list_lru *lru, struct shrink_control *sc,
171 list_lru_walk_cb isolate, void *cb_arg)
172{
60d3fd32
VD
173 return list_lru_walk_one(lru, sc->nid, sc->memcg, isolate, cb_arg,
174 &sc->nr_to_scan);
503c358c
VD
175}
176
6a4f496f
GC
177static inline unsigned long
178list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate,
179 void *cb_arg, unsigned long nr_to_walk)
180{
181 long isolated = 0;
182 int nid;
183
ff0b67ef 184 for_each_node_state(nid, N_NORMAL_MEMORY) {
6a4f496f
GC
185 isolated += list_lru_walk_node(lru, nid, isolate,
186 cb_arg, &nr_to_walk);
187 if (nr_to_walk <= 0)
188 break;
189 }
190 return isolated;
191}
a38e4082 192#endif /* _LRU_LIST_H */