]>
Commit | Line | Data |
---|---|---|
7a338472 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
f8af4da3 | 2 | /* |
31dbd01f IE |
3 | * Memory merging support. |
4 | * | |
5 | * This code enables dynamic sharing of identical pages found in different | |
6 | * memory areas, even if they are not shared by fork() | |
7 | * | |
36b2528d | 8 | * Copyright (C) 2008-2009 Red Hat, Inc. |
31dbd01f IE |
9 | * Authors: |
10 | * Izik Eidus | |
11 | * Andrea Arcangeli | |
12 | * Chris Wright | |
36b2528d | 13 | * Hugh Dickins |
f8af4da3 HD |
14 | */ |
15 | ||
16 | #include <linux/errno.h> | |
31dbd01f IE |
17 | #include <linux/mm.h> |
18 | #include <linux/fs.h> | |
f8af4da3 | 19 | #include <linux/mman.h> |
31dbd01f | 20 | #include <linux/sched.h> |
6e84f315 | 21 | #include <linux/sched/mm.h> |
f7ccbae4 | 22 | #include <linux/sched/coredump.h> |
31dbd01f IE |
23 | #include <linux/rwsem.h> |
24 | #include <linux/pagemap.h> | |
25 | #include <linux/rmap.h> | |
26 | #include <linux/spinlock.h> | |
59e1a2f4 | 27 | #include <linux/xxhash.h> |
31dbd01f IE |
28 | #include <linux/delay.h> |
29 | #include <linux/kthread.h> | |
30 | #include <linux/wait.h> | |
31 | #include <linux/slab.h> | |
32 | #include <linux/rbtree.h> | |
62b61f61 | 33 | #include <linux/memory.h> |
31dbd01f | 34 | #include <linux/mmu_notifier.h> |
2c6854fd | 35 | #include <linux/swap.h> |
f8af4da3 | 36 | #include <linux/ksm.h> |
4ca3a69b | 37 | #include <linux/hashtable.h> |
878aee7d | 38 | #include <linux/freezer.h> |
72788c38 | 39 | #include <linux/oom.h> |
90bd6fd3 | 40 | #include <linux/numa.h> |
f8af4da3 | 41 | |
31dbd01f | 42 | #include <asm/tlbflush.h> |
73848b46 | 43 | #include "internal.h" |
31dbd01f | 44 | |
e850dcf5 HD |
45 | #ifdef CONFIG_NUMA |
46 | #define NUMA(x) (x) | |
47 | #define DO_NUMA(x) do { (x); } while (0) | |
48 | #else | |
49 | #define NUMA(x) (0) | |
50 | #define DO_NUMA(x) do { } while (0) | |
51 | #endif | |
52 | ||
5a2ca3ef MR |
53 | /** |
54 | * DOC: Overview | |
55 | * | |
31dbd01f IE |
56 | * A few notes about the KSM scanning process, |
57 | * to make it easier to understand the data structures below: | |
58 | * | |
59 | * In order to reduce excessive scanning, KSM sorts the memory pages by their | |
60 | * contents into a data structure that holds pointers to the pages' locations. | |
61 | * | |
62 | * Since the contents of the pages may change at any moment, KSM cannot just | |
63 | * insert the pages into a normal sorted tree and expect it to find anything. | |
64 | * Therefore KSM uses two data structures - the stable and the unstable tree. | |
65 | * | |
66 | * The stable tree holds pointers to all the merged pages (ksm pages), sorted | |
67 | * by their contents. Because each such page is write-protected, searching on | |
68 | * this tree is fully assured to be working (except when pages are unmapped), | |
69 | * and therefore this tree is called the stable tree. | |
70 | * | |
5a2ca3ef MR |
71 | * The stable tree node includes information required for reverse |
72 | * mapping from a KSM page to virtual addresses that map this page. | |
73 | * | |
74 | * In order to avoid large latencies of the rmap walks on KSM pages, | |
75 | * KSM maintains two types of nodes in the stable tree: | |
76 | * | |
77 | * * the regular nodes that keep the reverse mapping structures in a | |
78 | * linked list | |
79 | * * the "chains" that link nodes ("dups") that represent the same | |
80 | * write protected memory content, but each "dup" corresponds to a | |
81 | * different KSM page copy of that content | |
82 | * | |
83 | * Internally, the regular nodes, "dups" and "chains" are represented | |
9303c9d5 | 84 | * using the same struct stable_node structure. |
5a2ca3ef | 85 | * |
31dbd01f IE |
86 | * In addition to the stable tree, KSM uses a second data structure called the |
87 | * unstable tree: this tree holds pointers to pages which have been found to | |
88 | * be "unchanged for a period of time". The unstable tree sorts these pages | |
89 | * by their contents, but since they are not write-protected, KSM cannot rely | |
90 | * upon the unstable tree to work correctly - the unstable tree is liable to | |
91 | * be corrupted as its contents are modified, and so it is called unstable. | |
92 | * | |
93 | * KSM solves this problem by several techniques: | |
94 | * | |
95 | * 1) The unstable tree is flushed every time KSM completes scanning all | |
96 | * memory areas, and then the tree is rebuilt again from the beginning. | |
97 | * 2) KSM will only insert into the unstable tree, pages whose hash value | |
98 | * has not changed since the previous scan of all memory areas. | |
99 | * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the | |
100 | * colors of the nodes and not on their contents, assuring that even when | |
101 | * the tree gets "corrupted" it won't get out of balance, so scanning time | |
102 | * remains the same (also, searching and inserting nodes in an rbtree uses | |
103 | * the same algorithm, so we have no overhead when we flush and rebuild). | |
104 | * 4) KSM never flushes the stable tree, which means that even if it were to | |
105 | * take 10 attempts to find a page in the unstable tree, once it is found, | |
106 | * it is secured in the stable tree. (When we scan a new page, we first | |
107 | * compare it against the stable tree, and then against the unstable tree.) | |
8fdb3dbf HD |
108 | * |
109 | * If the merge_across_nodes tunable is unset, then KSM maintains multiple | |
110 | * stable trees and multiple unstable trees: one of each for each NUMA node. | |
31dbd01f IE |
111 | */ |
112 | ||
113 | /** | |
114 | * struct mm_slot - ksm information per mm that is being scanned | |
115 | * @link: link to the mm_slots hash list | |
116 | * @mm_list: link into the mm_slots list, rooted in ksm_mm_head | |
6514d511 | 117 | * @rmap_list: head for this mm_slot's singly-linked list of rmap_items |
31dbd01f IE |
118 | * @mm: the mm that this information is valid for |
119 | */ | |
120 | struct mm_slot { | |
121 | struct hlist_node link; | |
122 | struct list_head mm_list; | |
6514d511 | 123 | struct rmap_item *rmap_list; |
31dbd01f IE |
124 | struct mm_struct *mm; |
125 | }; | |
126 | ||
127 | /** | |
128 | * struct ksm_scan - cursor for scanning | |
129 | * @mm_slot: the current mm_slot we are scanning | |
130 | * @address: the next address inside that to be scanned | |
6514d511 | 131 | * @rmap_list: link to the next rmap to be scanned in the rmap_list |
31dbd01f IE |
132 | * @seqnr: count of completed full scans (needed when removing unstable node) |
133 | * | |
134 | * There is only the one ksm_scan instance of this cursor structure. | |
135 | */ | |
136 | struct ksm_scan { | |
137 | struct mm_slot *mm_slot; | |
138 | unsigned long address; | |
6514d511 | 139 | struct rmap_item **rmap_list; |
31dbd01f IE |
140 | unsigned long seqnr; |
141 | }; | |
142 | ||
7b6ba2c7 HD |
143 | /** |
144 | * struct stable_node - node of the stable rbtree | |
145 | * @node: rb node of this ksm page in the stable tree | |
4146d2d6 | 146 | * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list |
2c653d0e | 147 | * @hlist_dup: linked into the stable_node->hlist with a stable_node chain |
4146d2d6 | 148 | * @list: linked into migrate_nodes, pending placement in the proper node tree |
7b6ba2c7 | 149 | * @hlist: hlist head of rmap_items using this ksm page |
4146d2d6 | 150 | * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid) |
2c653d0e AA |
151 | * @chain_prune_time: time of the last full garbage collection |
152 | * @rmap_hlist_len: number of rmap_item entries in hlist or STABLE_NODE_CHAIN | |
4146d2d6 | 153 | * @nid: NUMA node id of stable tree in which linked (may not match kpfn) |
7b6ba2c7 HD |
154 | */ |
155 | struct stable_node { | |
4146d2d6 HD |
156 | union { |
157 | struct rb_node node; /* when node of stable tree */ | |
158 | struct { /* when listed for migration */ | |
159 | struct list_head *head; | |
2c653d0e AA |
160 | struct { |
161 | struct hlist_node hlist_dup; | |
162 | struct list_head list; | |
163 | }; | |
4146d2d6 HD |
164 | }; |
165 | }; | |
7b6ba2c7 | 166 | struct hlist_head hlist; |
2c653d0e AA |
167 | union { |
168 | unsigned long kpfn; | |
169 | unsigned long chain_prune_time; | |
170 | }; | |
171 | /* | |
172 | * STABLE_NODE_CHAIN can be any negative number in | |
173 | * rmap_hlist_len negative range, but better not -1 to be able | |
174 | * to reliably detect underflows. | |
175 | */ | |
176 | #define STABLE_NODE_CHAIN -1024 | |
177 | int rmap_hlist_len; | |
4146d2d6 HD |
178 | #ifdef CONFIG_NUMA |
179 | int nid; | |
180 | #endif | |
7b6ba2c7 HD |
181 | }; |
182 | ||
31dbd01f IE |
183 | /** |
184 | * struct rmap_item - reverse mapping item for virtual addresses | |
6514d511 | 185 | * @rmap_list: next rmap_item in mm_slot's singly-linked rmap_list |
db114b83 | 186 | * @anon_vma: pointer to anon_vma for this mm,address, when in stable tree |
bc56620b | 187 | * @nid: NUMA node id of unstable tree in which linked (may not match page) |
31dbd01f IE |
188 | * @mm: the memory structure this rmap_item is pointing into |
189 | * @address: the virtual address this rmap_item tracks (+ flags in low bits) | |
190 | * @oldchecksum: previous checksum of the page at that virtual address | |
7b6ba2c7 HD |
191 | * @node: rb node of this rmap_item in the unstable tree |
192 | * @head: pointer to stable_node heading this list in the stable tree | |
193 | * @hlist: link into hlist of rmap_items hanging off that stable_node | |
31dbd01f IE |
194 | */ |
195 | struct rmap_item { | |
6514d511 | 196 | struct rmap_item *rmap_list; |
bc56620b HD |
197 | union { |
198 | struct anon_vma *anon_vma; /* when stable */ | |
199 | #ifdef CONFIG_NUMA | |
200 | int nid; /* when node of unstable tree */ | |
201 | #endif | |
202 | }; | |
31dbd01f IE |
203 | struct mm_struct *mm; |
204 | unsigned long address; /* + low bits used for flags below */ | |
7b6ba2c7 | 205 | unsigned int oldchecksum; /* when unstable */ |
31dbd01f | 206 | union { |
7b6ba2c7 HD |
207 | struct rb_node node; /* when node of unstable tree */ |
208 | struct { /* when listed from stable tree */ | |
209 | struct stable_node *head; | |
210 | struct hlist_node hlist; | |
211 | }; | |
31dbd01f IE |
212 | }; |
213 | }; | |
214 | ||
215 | #define SEQNR_MASK 0x0ff /* low bits of unstable tree seqnr */ | |
7b6ba2c7 HD |
216 | #define UNSTABLE_FLAG 0x100 /* is a node of the unstable tree */ |
217 | #define STABLE_FLAG 0x200 /* is listed from the stable tree */ | |
31dbd01f IE |
218 | |
219 | /* The stable and unstable tree heads */ | |
ef53d16c HD |
220 | static struct rb_root one_stable_tree[1] = { RB_ROOT }; |
221 | static struct rb_root one_unstable_tree[1] = { RB_ROOT }; | |
222 | static struct rb_root *root_stable_tree = one_stable_tree; | |
223 | static struct rb_root *root_unstable_tree = one_unstable_tree; | |
31dbd01f | 224 | |
4146d2d6 HD |
225 | /* Recently migrated nodes of stable tree, pending proper placement */ |
226 | static LIST_HEAD(migrate_nodes); | |
2c653d0e | 227 | #define STABLE_NODE_DUP_HEAD ((struct list_head *)&migrate_nodes.prev) |
4146d2d6 | 228 | |
4ca3a69b SL |
229 | #define MM_SLOTS_HASH_BITS 10 |
230 | static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS); | |
31dbd01f IE |
231 | |
232 | static struct mm_slot ksm_mm_head = { | |
233 | .mm_list = LIST_HEAD_INIT(ksm_mm_head.mm_list), | |
234 | }; | |
235 | static struct ksm_scan ksm_scan = { | |
236 | .mm_slot = &ksm_mm_head, | |
237 | }; | |
238 | ||
239 | static struct kmem_cache *rmap_item_cache; | |
7b6ba2c7 | 240 | static struct kmem_cache *stable_node_cache; |
31dbd01f IE |
241 | static struct kmem_cache *mm_slot_cache; |
242 | ||
243 | /* The number of nodes in the stable tree */ | |
b4028260 | 244 | static unsigned long ksm_pages_shared; |
31dbd01f | 245 | |
e178dfde | 246 | /* The number of page slots additionally sharing those nodes */ |
b4028260 | 247 | static unsigned long ksm_pages_sharing; |
31dbd01f | 248 | |
473b0ce4 HD |
249 | /* The number of nodes in the unstable tree */ |
250 | static unsigned long ksm_pages_unshared; | |
251 | ||
252 | /* The number of rmap_items in use: to calculate pages_volatile */ | |
253 | static unsigned long ksm_rmap_items; | |
254 | ||
2c653d0e AA |
255 | /* The number of stable_node chains */ |
256 | static unsigned long ksm_stable_node_chains; | |
257 | ||
258 | /* The number of stable_node dups linked to the stable_node chains */ | |
259 | static unsigned long ksm_stable_node_dups; | |
260 | ||
261 | /* Delay in pruning stale stable_node_dups in the stable_node_chains */ | |
262 | static int ksm_stable_node_chains_prune_millisecs = 2000; | |
263 | ||
264 | /* Maximum number of page slots sharing a stable node */ | |
265 | static int ksm_max_page_sharing = 256; | |
266 | ||
31dbd01f | 267 | /* Number of pages ksmd should scan in one batch */ |
2c6854fd | 268 | static unsigned int ksm_thread_pages_to_scan = 100; |
31dbd01f IE |
269 | |
270 | /* Milliseconds ksmd should sleep between batches */ | |
2ffd8679 | 271 | static unsigned int ksm_thread_sleep_millisecs = 20; |
31dbd01f | 272 | |
e86c59b1 CI |
273 | /* Checksum of an empty (zeroed) page */ |
274 | static unsigned int zero_checksum __read_mostly; | |
275 | ||
276 | /* Whether to merge empty (zeroed) pages with actual zero pages */ | |
277 | static bool ksm_use_zero_pages __read_mostly; | |
278 | ||
e850dcf5 | 279 | #ifdef CONFIG_NUMA |
90bd6fd3 PH |
280 | /* Zeroed when merging across nodes is not allowed */ |
281 | static unsigned int ksm_merge_across_nodes = 1; | |
ef53d16c | 282 | static int ksm_nr_node_ids = 1; |
e850dcf5 HD |
283 | #else |
284 | #define ksm_merge_across_nodes 1U | |
ef53d16c | 285 | #define ksm_nr_node_ids 1 |
e850dcf5 | 286 | #endif |
90bd6fd3 | 287 | |
31dbd01f IE |
288 | #define KSM_RUN_STOP 0 |
289 | #define KSM_RUN_MERGE 1 | |
290 | #define KSM_RUN_UNMERGE 2 | |
ef4d43a8 HD |
291 | #define KSM_RUN_OFFLINE 4 |
292 | static unsigned long ksm_run = KSM_RUN_STOP; | |
293 | static void wait_while_offlining(void); | |
31dbd01f IE |
294 | |
295 | static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait); | |
fcf9a0ef | 296 | static DECLARE_WAIT_QUEUE_HEAD(ksm_iter_wait); |
31dbd01f IE |
297 | static DEFINE_MUTEX(ksm_thread_mutex); |
298 | static DEFINE_SPINLOCK(ksm_mmlist_lock); | |
299 | ||
300 | #define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create("ksm_"#__struct,\ | |
301 | sizeof(struct __struct), __alignof__(struct __struct),\ | |
302 | (__flags), NULL) | |
303 | ||
304 | static int __init ksm_slab_init(void) | |
305 | { | |
306 | rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0); | |
307 | if (!rmap_item_cache) | |
308 | goto out; | |
309 | ||
7b6ba2c7 HD |
310 | stable_node_cache = KSM_KMEM_CACHE(stable_node, 0); |
311 | if (!stable_node_cache) | |
312 | goto out_free1; | |
313 | ||
31dbd01f IE |
314 | mm_slot_cache = KSM_KMEM_CACHE(mm_slot, 0); |
315 | if (!mm_slot_cache) | |
7b6ba2c7 | 316 | goto out_free2; |
31dbd01f IE |
317 | |
318 | return 0; | |
319 | ||
7b6ba2c7 HD |
320 | out_free2: |
321 | kmem_cache_destroy(stable_node_cache); | |
322 | out_free1: | |
31dbd01f IE |
323 | kmem_cache_destroy(rmap_item_cache); |
324 | out: | |
325 | return -ENOMEM; | |
326 | } | |
327 | ||
328 | static void __init ksm_slab_free(void) | |
329 | { | |
330 | kmem_cache_destroy(mm_slot_cache); | |
7b6ba2c7 | 331 | kmem_cache_destroy(stable_node_cache); |
31dbd01f IE |
332 | kmem_cache_destroy(rmap_item_cache); |
333 | mm_slot_cache = NULL; | |
334 | } | |
335 | ||
2c653d0e AA |
336 | static __always_inline bool is_stable_node_chain(struct stable_node *chain) |
337 | { | |
338 | return chain->rmap_hlist_len == STABLE_NODE_CHAIN; | |
339 | } | |
340 | ||
341 | static __always_inline bool is_stable_node_dup(struct stable_node *dup) | |
342 | { | |
343 | return dup->head == STABLE_NODE_DUP_HEAD; | |
344 | } | |
345 | ||
346 | static inline void stable_node_chain_add_dup(struct stable_node *dup, | |
347 | struct stable_node *chain) | |
348 | { | |
349 | VM_BUG_ON(is_stable_node_dup(dup)); | |
350 | dup->head = STABLE_NODE_DUP_HEAD; | |
351 | VM_BUG_ON(!is_stable_node_chain(chain)); | |
352 | hlist_add_head(&dup->hlist_dup, &chain->hlist); | |
353 | ksm_stable_node_dups++; | |
354 | } | |
355 | ||
356 | static inline void __stable_node_dup_del(struct stable_node *dup) | |
357 | { | |
b4fecc67 | 358 | VM_BUG_ON(!is_stable_node_dup(dup)); |
2c653d0e AA |
359 | hlist_del(&dup->hlist_dup); |
360 | ksm_stable_node_dups--; | |
361 | } | |
362 | ||
363 | static inline void stable_node_dup_del(struct stable_node *dup) | |
364 | { | |
365 | VM_BUG_ON(is_stable_node_chain(dup)); | |
366 | if (is_stable_node_dup(dup)) | |
367 | __stable_node_dup_del(dup); | |
368 | else | |
369 | rb_erase(&dup->node, root_stable_tree + NUMA(dup->nid)); | |
370 | #ifdef CONFIG_DEBUG_VM | |
371 | dup->head = NULL; | |
372 | #endif | |
373 | } | |
374 | ||
31dbd01f IE |
375 | static inline struct rmap_item *alloc_rmap_item(void) |
376 | { | |
473b0ce4 HD |
377 | struct rmap_item *rmap_item; |
378 | ||
5b398e41 | 379 | rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL | |
380 | __GFP_NORETRY | __GFP_NOWARN); | |
473b0ce4 HD |
381 | if (rmap_item) |
382 | ksm_rmap_items++; | |
383 | return rmap_item; | |
31dbd01f IE |
384 | } |
385 | ||
386 | static inline void free_rmap_item(struct rmap_item *rmap_item) | |
387 | { | |
473b0ce4 | 388 | ksm_rmap_items--; |
31dbd01f IE |
389 | rmap_item->mm = NULL; /* debug safety */ |
390 | kmem_cache_free(rmap_item_cache, rmap_item); | |
391 | } | |
392 | ||
7b6ba2c7 HD |
393 | static inline struct stable_node *alloc_stable_node(void) |
394 | { | |
6213055f | 395 | /* |
396 | * The allocation can take too long with GFP_KERNEL when memory is under | |
397 | * pressure, which may lead to hung task warnings. Adding __GFP_HIGH | |
398 | * grants access to memory reserves, helping to avoid this problem. | |
399 | */ | |
400 | return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH); | |
7b6ba2c7 HD |
401 | } |
402 | ||
403 | static inline void free_stable_node(struct stable_node *stable_node) | |
404 | { | |
2c653d0e AA |
405 | VM_BUG_ON(stable_node->rmap_hlist_len && |
406 | !is_stable_node_chain(stable_node)); | |
7b6ba2c7 HD |
407 | kmem_cache_free(stable_node_cache, stable_node); |
408 | } | |
409 | ||
31dbd01f IE |
410 | static inline struct mm_slot *alloc_mm_slot(void) |
411 | { | |
412 | if (!mm_slot_cache) /* initialization failed */ | |
413 | return NULL; | |
414 | return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL); | |
415 | } | |
416 | ||
417 | static inline void free_mm_slot(struct mm_slot *mm_slot) | |
418 | { | |
419 | kmem_cache_free(mm_slot_cache, mm_slot); | |
420 | } | |
421 | ||
31dbd01f IE |
422 | static struct mm_slot *get_mm_slot(struct mm_struct *mm) |
423 | { | |
4ca3a69b SL |
424 | struct mm_slot *slot; |
425 | ||
b67bfe0d | 426 | hash_for_each_possible(mm_slots_hash, slot, link, (unsigned long)mm) |
4ca3a69b SL |
427 | if (slot->mm == mm) |
428 | return slot; | |
31dbd01f | 429 | |
31dbd01f IE |
430 | return NULL; |
431 | } | |
432 | ||
433 | static void insert_to_mm_slots_hash(struct mm_struct *mm, | |
434 | struct mm_slot *mm_slot) | |
435 | { | |
31dbd01f | 436 | mm_slot->mm = mm; |
4ca3a69b | 437 | hash_add(mm_slots_hash, &mm_slot->link, (unsigned long)mm); |
31dbd01f IE |
438 | } |
439 | ||
a913e182 HD |
440 | /* |
441 | * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's | |
442 | * page tables after it has passed through ksm_exit() - which, if necessary, | |
c1e8d7c6 | 443 | * takes mmap_lock briefly to serialize against them. ksm_exit() does not set |
a913e182 HD |
444 | * a special flag: they can just back out as soon as mm_users goes to zero. |
445 | * ksm_test_exit() is used throughout to make this test for exit: in some | |
446 | * places for correctness, in some places just to avoid unnecessary work. | |
447 | */ | |
448 | static inline bool ksm_test_exit(struct mm_struct *mm) | |
449 | { | |
450 | return atomic_read(&mm->mm_users) == 0; | |
451 | } | |
452 | ||
31dbd01f IE |
453 | /* |
454 | * We use break_ksm to break COW on a ksm page: it's a stripped down | |
455 | * | |
7a9547fd | 456 | * if (get_user_pages(addr, 1, FOLL_WRITE, &page, NULL) == 1) |
31dbd01f IE |
457 | * put_page(page); |
458 | * | |
459 | * but taking great care only to touch a ksm page, in a VM_MERGEABLE vma, | |
460 | * in case the application has unmapped and remapped mm,addr meanwhile. | |
461 | * Could a ksm page appear anywhere else? Actually yes, in a VM_PFNMAP | |
462 | * mmap of /dev/mem or /dev/kmem, where we would not want to touch it. | |
1b2ee126 DH |
463 | * |
464 | * FAULT_FLAG/FOLL_REMOTE are because we do this outside the context | |
465 | * of the process that owns 'vma'. We also do not want to enforce | |
466 | * protection keys here anyway. | |
31dbd01f | 467 | */ |
d952b791 | 468 | static int break_ksm(struct vm_area_struct *vma, unsigned long addr) |
31dbd01f IE |
469 | { |
470 | struct page *page; | |
50a7ca3c | 471 | vm_fault_t ret = 0; |
31dbd01f IE |
472 | |
473 | do { | |
474 | cond_resched(); | |
1b2ee126 DH |
475 | page = follow_page(vma, addr, |
476 | FOLL_GET | FOLL_MIGRATION | FOLL_REMOTE); | |
22eccdd7 | 477 | if (IS_ERR_OR_NULL(page)) |
31dbd01f IE |
478 | break; |
479 | if (PageKsm(page)) | |
dcddffd4 | 480 | ret = handle_mm_fault(vma, addr, |
bce617ed PX |
481 | FAULT_FLAG_WRITE | FAULT_FLAG_REMOTE, |
482 | NULL); | |
31dbd01f IE |
483 | else |
484 | ret = VM_FAULT_WRITE; | |
485 | put_page(page); | |
33692f27 | 486 | } while (!(ret & (VM_FAULT_WRITE | VM_FAULT_SIGBUS | VM_FAULT_SIGSEGV | VM_FAULT_OOM))); |
d952b791 HD |
487 | /* |
488 | * We must loop because handle_mm_fault() may back out if there's | |
489 | * any difficulty e.g. if pte accessed bit gets updated concurrently. | |
490 | * | |
491 | * VM_FAULT_WRITE is what we have been hoping for: it indicates that | |
492 | * COW has been broken, even if the vma does not permit VM_WRITE; | |
493 | * but note that a concurrent fault might break PageKsm for us. | |
494 | * | |
495 | * VM_FAULT_SIGBUS could occur if we race with truncation of the | |
496 | * backing file, which also invalidates anonymous pages: that's | |
497 | * okay, that truncation will have unmapped the PageKsm for us. | |
498 | * | |
499 | * VM_FAULT_OOM: at the time of writing (late July 2009), setting | |
500 | * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the | |
501 | * current task has TIF_MEMDIE set, and will be OOM killed on return | |
502 | * to user; and ksmd, having no mm, would never be chosen for that. | |
503 | * | |
504 | * But if the mm is in a limited mem_cgroup, then the fault may fail | |
505 | * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and | |
506 | * even ksmd can fail in this way - though it's usually breaking ksm | |
507 | * just to undo a merge it made a moment before, so unlikely to oom. | |
508 | * | |
509 | * That's a pity: we might therefore have more kernel pages allocated | |
510 | * than we're counting as nodes in the stable tree; but ksm_do_scan | |
511 | * will retry to break_cow on each pass, so should recover the page | |
512 | * in due course. The important thing is to not let VM_MERGEABLE | |
513 | * be cleared while any such pages might remain in the area. | |
514 | */ | |
515 | return (ret & VM_FAULT_OOM) ? -ENOMEM : 0; | |
31dbd01f IE |
516 | } |
517 | ||
ef694222 BL |
518 | static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm, |
519 | unsigned long addr) | |
520 | { | |
521 | struct vm_area_struct *vma; | |
522 | if (ksm_test_exit(mm)) | |
523 | return NULL; | |
524 | vma = find_vma(mm, addr); | |
525 | if (!vma || vma->vm_start > addr) | |
526 | return NULL; | |
527 | if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma) | |
528 | return NULL; | |
529 | return vma; | |
530 | } | |
531 | ||
8dd3557a | 532 | static void break_cow(struct rmap_item *rmap_item) |
31dbd01f | 533 | { |
8dd3557a HD |
534 | struct mm_struct *mm = rmap_item->mm; |
535 | unsigned long addr = rmap_item->address; | |
31dbd01f IE |
536 | struct vm_area_struct *vma; |
537 | ||
4035c07a HD |
538 | /* |
539 | * It is not an accident that whenever we want to break COW | |
540 | * to undo, we also need to drop a reference to the anon_vma. | |
541 | */ | |
9e60109f | 542 | put_anon_vma(rmap_item->anon_vma); |
4035c07a | 543 | |
d8ed45c5 | 544 | mmap_read_lock(mm); |
ef694222 BL |
545 | vma = find_mergeable_vma(mm, addr); |
546 | if (vma) | |
547 | break_ksm(vma, addr); | |
d8ed45c5 | 548 | mmap_read_unlock(mm); |
31dbd01f IE |
549 | } |
550 | ||
551 | static struct page *get_mergeable_page(struct rmap_item *rmap_item) | |
552 | { | |
553 | struct mm_struct *mm = rmap_item->mm; | |
554 | unsigned long addr = rmap_item->address; | |
555 | struct vm_area_struct *vma; | |
556 | struct page *page; | |
557 | ||
d8ed45c5 | 558 | mmap_read_lock(mm); |
ef694222 BL |
559 | vma = find_mergeable_vma(mm, addr); |
560 | if (!vma) | |
31dbd01f IE |
561 | goto out; |
562 | ||
563 | page = follow_page(vma, addr, FOLL_GET); | |
22eccdd7 | 564 | if (IS_ERR_OR_NULL(page)) |
31dbd01f | 565 | goto out; |
f765f540 | 566 | if (PageAnon(page)) { |
31dbd01f IE |
567 | flush_anon_page(vma, page, addr); |
568 | flush_dcache_page(page); | |
569 | } else { | |
570 | put_page(page); | |
c8f95ed1 AA |
571 | out: |
572 | page = NULL; | |
31dbd01f | 573 | } |
d8ed45c5 | 574 | mmap_read_unlock(mm); |
31dbd01f IE |
575 | return page; |
576 | } | |
577 | ||
90bd6fd3 PH |
578 | /* |
579 | * This helper is used for getting right index into array of tree roots. | |
580 | * When merge_across_nodes knob is set to 1, there are only two rb-trees for | |
581 | * stable and unstable pages from all nodes with roots in index 0. Otherwise, | |
582 | * every node has its own stable and unstable tree. | |
583 | */ | |
584 | static inline int get_kpfn_nid(unsigned long kpfn) | |
585 | { | |
d8fc16a8 | 586 | return ksm_merge_across_nodes ? 0 : NUMA(pfn_to_nid(kpfn)); |
90bd6fd3 PH |
587 | } |
588 | ||
2c653d0e AA |
589 | static struct stable_node *alloc_stable_node_chain(struct stable_node *dup, |
590 | struct rb_root *root) | |
591 | { | |
592 | struct stable_node *chain = alloc_stable_node(); | |
593 | VM_BUG_ON(is_stable_node_chain(dup)); | |
594 | if (likely(chain)) { | |
595 | INIT_HLIST_HEAD(&chain->hlist); | |
596 | chain->chain_prune_time = jiffies; | |
597 | chain->rmap_hlist_len = STABLE_NODE_CHAIN; | |
598 | #if defined (CONFIG_DEBUG_VM) && defined(CONFIG_NUMA) | |
98fa15f3 | 599 | chain->nid = NUMA_NO_NODE; /* debug */ |
2c653d0e AA |
600 | #endif |
601 | ksm_stable_node_chains++; | |
602 | ||
603 | /* | |
604 | * Put the stable node chain in the first dimension of | |
605 | * the stable tree and at the same time remove the old | |
606 | * stable node. | |
607 | */ | |
608 | rb_replace_node(&dup->node, &chain->node, root); | |
609 | ||
610 | /* | |
611 | * Move the old stable node to the second dimension | |
612 | * queued in the hlist_dup. The invariant is that all | |
613 | * dup stable_nodes in the chain->hlist point to pages | |
457aef94 | 614 | * that are write protected and have the exact same |
2c653d0e AA |
615 | * content. |
616 | */ | |
617 | stable_node_chain_add_dup(dup, chain); | |
618 | } | |
619 | return chain; | |
620 | } | |
621 | ||
622 | static inline void free_stable_node_chain(struct stable_node *chain, | |
623 | struct rb_root *root) | |
624 | { | |
625 | rb_erase(&chain->node, root); | |
626 | free_stable_node(chain); | |
627 | ksm_stable_node_chains--; | |
628 | } | |
629 | ||
4035c07a HD |
630 | static void remove_node_from_stable_tree(struct stable_node *stable_node) |
631 | { | |
632 | struct rmap_item *rmap_item; | |
4035c07a | 633 | |
2c653d0e AA |
634 | /* check it's not STABLE_NODE_CHAIN or negative */ |
635 | BUG_ON(stable_node->rmap_hlist_len < 0); | |
636 | ||
b67bfe0d | 637 | hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) { |
4035c07a HD |
638 | if (rmap_item->hlist.next) |
639 | ksm_pages_sharing--; | |
640 | else | |
641 | ksm_pages_shared--; | |
2c653d0e AA |
642 | VM_BUG_ON(stable_node->rmap_hlist_len <= 0); |
643 | stable_node->rmap_hlist_len--; | |
9e60109f | 644 | put_anon_vma(rmap_item->anon_vma); |
4035c07a HD |
645 | rmap_item->address &= PAGE_MASK; |
646 | cond_resched(); | |
647 | } | |
648 | ||
2c653d0e AA |
649 | /* |
650 | * We need the second aligned pointer of the migrate_nodes | |
651 | * list_head to stay clear from the rb_parent_color union | |
652 | * (aligned and different than any node) and also different | |
653 | * from &migrate_nodes. This will verify that future list.h changes | |
815f0ddb | 654 | * don't break STABLE_NODE_DUP_HEAD. Only recent gcc can handle it. |
2c653d0e | 655 | */ |
815f0ddb | 656 | #if defined(GCC_VERSION) && GCC_VERSION >= 40903 |
2c653d0e AA |
657 | BUILD_BUG_ON(STABLE_NODE_DUP_HEAD <= &migrate_nodes); |
658 | BUILD_BUG_ON(STABLE_NODE_DUP_HEAD >= &migrate_nodes + 1); | |
659 | #endif | |
660 | ||
4146d2d6 HD |
661 | if (stable_node->head == &migrate_nodes) |
662 | list_del(&stable_node->list); | |
663 | else | |
2c653d0e | 664 | stable_node_dup_del(stable_node); |
4035c07a HD |
665 | free_stable_node(stable_node); |
666 | } | |
667 | ||
2cee57d1 YS |
668 | enum get_ksm_page_flags { |
669 | GET_KSM_PAGE_NOLOCK, | |
670 | GET_KSM_PAGE_LOCK, | |
671 | GET_KSM_PAGE_TRYLOCK | |
672 | }; | |
673 | ||
4035c07a HD |
674 | /* |
675 | * get_ksm_page: checks if the page indicated by the stable node | |
676 | * is still its ksm page, despite having held no reference to it. | |
677 | * In which case we can trust the content of the page, and it | |
678 | * returns the gotten page; but if the page has now been zapped, | |
679 | * remove the stale node from the stable tree and return NULL. | |
c8d6553b | 680 | * But beware, the stable node's page might be being migrated. |
4035c07a HD |
681 | * |
682 | * You would expect the stable_node to hold a reference to the ksm page. | |
683 | * But if it increments the page's count, swapping out has to wait for | |
684 | * ksmd to come around again before it can free the page, which may take | |
685 | * seconds or even minutes: much too unresponsive. So instead we use a | |
686 | * "keyhole reference": access to the ksm page from the stable node peeps | |
687 | * out through its keyhole to see if that page still holds the right key, | |
688 | * pointing back to this stable node. This relies on freeing a PageAnon | |
689 | * page to reset its page->mapping to NULL, and relies on no other use of | |
690 | * a page to put something that might look like our key in page->mapping. | |
4035c07a HD |
691 | * is on its way to being freed; but it is an anomaly to bear in mind. |
692 | */ | |
2cee57d1 YS |
693 | static struct page *get_ksm_page(struct stable_node *stable_node, |
694 | enum get_ksm_page_flags flags) | |
4035c07a HD |
695 | { |
696 | struct page *page; | |
697 | void *expected_mapping; | |
c8d6553b | 698 | unsigned long kpfn; |
4035c07a | 699 | |
bda807d4 MK |
700 | expected_mapping = (void *)((unsigned long)stable_node | |
701 | PAGE_MAPPING_KSM); | |
c8d6553b | 702 | again: |
08df4774 | 703 | kpfn = READ_ONCE(stable_node->kpfn); /* Address dependency. */ |
c8d6553b | 704 | page = pfn_to_page(kpfn); |
4db0c3c2 | 705 | if (READ_ONCE(page->mapping) != expected_mapping) |
4035c07a | 706 | goto stale; |
c8d6553b HD |
707 | |
708 | /* | |
709 | * We cannot do anything with the page while its refcount is 0. | |
710 | * Usually 0 means free, or tail of a higher-order page: in which | |
711 | * case this node is no longer referenced, and should be freed; | |
1c4c3b99 | 712 | * however, it might mean that the page is under page_ref_freeze(). |
c8d6553b | 713 | * The __remove_mapping() case is easy, again the node is now stale; |
52d1e606 KT |
714 | * the same is in reuse_ksm_page() case; but if page is swapcache |
715 | * in migrate_page_move_mapping(), it might still be our page, | |
716 | * in which case it's essential to keep the node. | |
c8d6553b HD |
717 | */ |
718 | while (!get_page_unless_zero(page)) { | |
719 | /* | |
720 | * Another check for page->mapping != expected_mapping would | |
721 | * work here too. We have chosen the !PageSwapCache test to | |
722 | * optimize the common case, when the page is or is about to | |
723 | * be freed: PageSwapCache is cleared (under spin_lock_irq) | |
1c4c3b99 | 724 | * in the ref_freeze section of __remove_mapping(); but Anon |
c8d6553b HD |
725 | * page->mapping reset to NULL later, in free_pages_prepare(). |
726 | */ | |
727 | if (!PageSwapCache(page)) | |
728 | goto stale; | |
729 | cpu_relax(); | |
730 | } | |
731 | ||
4db0c3c2 | 732 | if (READ_ONCE(page->mapping) != expected_mapping) { |
4035c07a HD |
733 | put_page(page); |
734 | goto stale; | |
735 | } | |
c8d6553b | 736 | |
2cee57d1 YS |
737 | if (flags == GET_KSM_PAGE_TRYLOCK) { |
738 | if (!trylock_page(page)) { | |
739 | put_page(page); | |
740 | return ERR_PTR(-EBUSY); | |
741 | } | |
742 | } else if (flags == GET_KSM_PAGE_LOCK) | |
8aafa6a4 | 743 | lock_page(page); |
2cee57d1 YS |
744 | |
745 | if (flags != GET_KSM_PAGE_NOLOCK) { | |
4db0c3c2 | 746 | if (READ_ONCE(page->mapping) != expected_mapping) { |
8aafa6a4 HD |
747 | unlock_page(page); |
748 | put_page(page); | |
749 | goto stale; | |
750 | } | |
751 | } | |
4035c07a | 752 | return page; |
c8d6553b | 753 | |
4035c07a | 754 | stale: |
c8d6553b HD |
755 | /* |
756 | * We come here from above when page->mapping or !PageSwapCache | |
757 | * suggests that the node is stale; but it might be under migration. | |
758 | * We need smp_rmb(), matching the smp_wmb() in ksm_migrate_page(), | |
759 | * before checking whether node->kpfn has been changed. | |
760 | */ | |
761 | smp_rmb(); | |
4db0c3c2 | 762 | if (READ_ONCE(stable_node->kpfn) != kpfn) |
c8d6553b | 763 | goto again; |
4035c07a HD |
764 | remove_node_from_stable_tree(stable_node); |
765 | return NULL; | |
766 | } | |
767 | ||
31dbd01f IE |
768 | /* |
769 | * Removing rmap_item from stable or unstable tree. | |
770 | * This function will clean the information from the stable/unstable tree. | |
771 | */ | |
772 | static void remove_rmap_item_from_tree(struct rmap_item *rmap_item) | |
773 | { | |
7b6ba2c7 HD |
774 | if (rmap_item->address & STABLE_FLAG) { |
775 | struct stable_node *stable_node; | |
5ad64688 | 776 | struct page *page; |
31dbd01f | 777 | |
7b6ba2c7 | 778 | stable_node = rmap_item->head; |
3e96b6a2 | 779 | page = get_ksm_page(stable_node, GET_KSM_PAGE_NOLOCK); |
4035c07a HD |
780 | if (!page) |
781 | goto out; | |
5ad64688 | 782 | |
7b6ba2c7 | 783 | hlist_del(&rmap_item->hlist); |
4035c07a | 784 | put_page(page); |
08beca44 | 785 | |
98666f8a | 786 | if (!hlist_empty(&stable_node->hlist)) |
4035c07a HD |
787 | ksm_pages_sharing--; |
788 | else | |
7b6ba2c7 | 789 | ksm_pages_shared--; |
2c653d0e AA |
790 | VM_BUG_ON(stable_node->rmap_hlist_len <= 0); |
791 | stable_node->rmap_hlist_len--; | |
31dbd01f | 792 | |
9e60109f | 793 | put_anon_vma(rmap_item->anon_vma); |
c89a384e | 794 | rmap_item->head = NULL; |
93d17715 | 795 | rmap_item->address &= PAGE_MASK; |
31dbd01f | 796 | |
7b6ba2c7 | 797 | } else if (rmap_item->address & UNSTABLE_FLAG) { |
31dbd01f IE |
798 | unsigned char age; |
799 | /* | |
9ba69294 | 800 | * Usually ksmd can and must skip the rb_erase, because |
31dbd01f | 801 | * root_unstable_tree was already reset to RB_ROOT. |
9ba69294 HD |
802 | * But be careful when an mm is exiting: do the rb_erase |
803 | * if this rmap_item was inserted by this scan, rather | |
804 | * than left over from before. | |
31dbd01f IE |
805 | */ |
806 | age = (unsigned char)(ksm_scan.seqnr - rmap_item->address); | |
cd551f97 | 807 | BUG_ON(age > 1); |
31dbd01f | 808 | if (!age) |
90bd6fd3 | 809 | rb_erase(&rmap_item->node, |
ef53d16c | 810 | root_unstable_tree + NUMA(rmap_item->nid)); |
473b0ce4 | 811 | ksm_pages_unshared--; |
93d17715 | 812 | rmap_item->address &= PAGE_MASK; |
31dbd01f | 813 | } |
4035c07a | 814 | out: |
31dbd01f IE |
815 | cond_resched(); /* we're called from many long loops */ |
816 | } | |
817 | ||
420be4ed | 818 | static void remove_trailing_rmap_items(struct rmap_item **rmap_list) |
31dbd01f | 819 | { |
6514d511 HD |
820 | while (*rmap_list) { |
821 | struct rmap_item *rmap_item = *rmap_list; | |
822 | *rmap_list = rmap_item->rmap_list; | |
31dbd01f | 823 | remove_rmap_item_from_tree(rmap_item); |
31dbd01f IE |
824 | free_rmap_item(rmap_item); |
825 | } | |
826 | } | |
827 | ||
828 | /* | |
e850dcf5 | 829 | * Though it's very tempting to unmerge rmap_items from stable tree rather |
31dbd01f IE |
830 | * than check every pte of a given vma, the locking doesn't quite work for |
831 | * that - an rmap_item is assigned to the stable tree after inserting ksm | |
c1e8d7c6 | 832 | * page and upping mmap_lock. Nor does it fit with the way we skip dup'ing |
31dbd01f IE |
833 | * rmap_items from parent to child at fork time (so as not to waste time |
834 | * if exit comes before the next scan reaches it). | |
81464e30 HD |
835 | * |
836 | * Similarly, although we'd like to remove rmap_items (so updating counts | |
837 | * and freeing memory) when unmerging an area, it's easier to leave that | |
838 | * to the next pass of ksmd - consider, for example, how ksmd might be | |
839 | * in cmp_and_merge_page on one of the rmap_items we would be removing. | |
31dbd01f | 840 | */ |
d952b791 HD |
841 | static int unmerge_ksm_pages(struct vm_area_struct *vma, |
842 | unsigned long start, unsigned long end) | |
31dbd01f IE |
843 | { |
844 | unsigned long addr; | |
d952b791 | 845 | int err = 0; |
31dbd01f | 846 | |
d952b791 | 847 | for (addr = start; addr < end && !err; addr += PAGE_SIZE) { |
9ba69294 HD |
848 | if (ksm_test_exit(vma->vm_mm)) |
849 | break; | |
d952b791 HD |
850 | if (signal_pending(current)) |
851 | err = -ERESTARTSYS; | |
852 | else | |
853 | err = break_ksm(vma, addr); | |
854 | } | |
855 | return err; | |
31dbd01f IE |
856 | } |
857 | ||
88484826 MR |
858 | static inline struct stable_node *page_stable_node(struct page *page) |
859 | { | |
860 | return PageKsm(page) ? page_rmapping(page) : NULL; | |
861 | } | |
862 | ||
863 | static inline void set_page_stable_node(struct page *page, | |
864 | struct stable_node *stable_node) | |
865 | { | |
866 | page->mapping = (void *)((unsigned long)stable_node | PAGE_MAPPING_KSM); | |
867 | } | |
868 | ||
2ffd8679 HD |
869 | #ifdef CONFIG_SYSFS |
870 | /* | |
871 | * Only called through the sysfs control interface: | |
872 | */ | |
cbf86cfe HD |
873 | static int remove_stable_node(struct stable_node *stable_node) |
874 | { | |
875 | struct page *page; | |
876 | int err; | |
877 | ||
2cee57d1 | 878 | page = get_ksm_page(stable_node, GET_KSM_PAGE_LOCK); |
cbf86cfe HD |
879 | if (!page) { |
880 | /* | |
881 | * get_ksm_page did remove_node_from_stable_tree itself. | |
882 | */ | |
883 | return 0; | |
884 | } | |
885 | ||
9a63236f AR |
886 | /* |
887 | * Page could be still mapped if this races with __mmput() running in | |
888 | * between ksm_exit() and exit_mmap(). Just refuse to let | |
889 | * merge_across_nodes/max_page_sharing be switched. | |
890 | */ | |
891 | err = -EBUSY; | |
892 | if (!page_mapped(page)) { | |
cbf86cfe | 893 | /* |
8fdb3dbf HD |
894 | * The stable node did not yet appear stale to get_ksm_page(), |
895 | * since that allows for an unmapped ksm page to be recognized | |
896 | * right up until it is freed; but the node is safe to remove. | |
cbf86cfe HD |
897 | * This page might be in a pagevec waiting to be freed, |
898 | * or it might be PageSwapCache (perhaps under writeback), | |
899 | * or it might have been removed from swapcache a moment ago. | |
900 | */ | |
901 | set_page_stable_node(page, NULL); | |
902 | remove_node_from_stable_tree(stable_node); | |
903 | err = 0; | |
904 | } | |
905 | ||
906 | unlock_page(page); | |
907 | put_page(page); | |
908 | return err; | |
909 | } | |
910 | ||
2c653d0e AA |
911 | static int remove_stable_node_chain(struct stable_node *stable_node, |
912 | struct rb_root *root) | |
913 | { | |
914 | struct stable_node *dup; | |
915 | struct hlist_node *hlist_safe; | |
916 | ||
917 | if (!is_stable_node_chain(stable_node)) { | |
918 | VM_BUG_ON(is_stable_node_dup(stable_node)); | |
919 | if (remove_stable_node(stable_node)) | |
920 | return true; | |
921 | else | |
922 | return false; | |
923 | } | |
924 | ||
925 | hlist_for_each_entry_safe(dup, hlist_safe, | |
926 | &stable_node->hlist, hlist_dup) { | |
927 | VM_BUG_ON(!is_stable_node_dup(dup)); | |
928 | if (remove_stable_node(dup)) | |
929 | return true; | |
930 | } | |
931 | BUG_ON(!hlist_empty(&stable_node->hlist)); | |
932 | free_stable_node_chain(stable_node, root); | |
933 | return false; | |
934 | } | |
935 | ||
cbf86cfe HD |
936 | static int remove_all_stable_nodes(void) |
937 | { | |
03640418 | 938 | struct stable_node *stable_node, *next; |
cbf86cfe HD |
939 | int nid; |
940 | int err = 0; | |
941 | ||
ef53d16c | 942 | for (nid = 0; nid < ksm_nr_node_ids; nid++) { |
cbf86cfe HD |
943 | while (root_stable_tree[nid].rb_node) { |
944 | stable_node = rb_entry(root_stable_tree[nid].rb_node, | |
945 | struct stable_node, node); | |
2c653d0e AA |
946 | if (remove_stable_node_chain(stable_node, |
947 | root_stable_tree + nid)) { | |
cbf86cfe HD |
948 | err = -EBUSY; |
949 | break; /* proceed to next nid */ | |
950 | } | |
951 | cond_resched(); | |
952 | } | |
953 | } | |
03640418 | 954 | list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) { |
4146d2d6 HD |
955 | if (remove_stable_node(stable_node)) |
956 | err = -EBUSY; | |
957 | cond_resched(); | |
958 | } | |
cbf86cfe HD |
959 | return err; |
960 | } | |
961 | ||
d952b791 | 962 | static int unmerge_and_remove_all_rmap_items(void) |
31dbd01f IE |
963 | { |
964 | struct mm_slot *mm_slot; | |
965 | struct mm_struct *mm; | |
966 | struct vm_area_struct *vma; | |
d952b791 HD |
967 | int err = 0; |
968 | ||
969 | spin_lock(&ksm_mmlist_lock); | |
9ba69294 | 970 | ksm_scan.mm_slot = list_entry(ksm_mm_head.mm_list.next, |
d952b791 HD |
971 | struct mm_slot, mm_list); |
972 | spin_unlock(&ksm_mmlist_lock); | |
31dbd01f | 973 | |
9ba69294 HD |
974 | for (mm_slot = ksm_scan.mm_slot; |
975 | mm_slot != &ksm_mm_head; mm_slot = ksm_scan.mm_slot) { | |
31dbd01f | 976 | mm = mm_slot->mm; |
d8ed45c5 | 977 | mmap_read_lock(mm); |
31dbd01f | 978 | for (vma = mm->mmap; vma; vma = vma->vm_next) { |
9ba69294 HD |
979 | if (ksm_test_exit(mm)) |
980 | break; | |
31dbd01f IE |
981 | if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma) |
982 | continue; | |
d952b791 HD |
983 | err = unmerge_ksm_pages(vma, |
984 | vma->vm_start, vma->vm_end); | |
9ba69294 HD |
985 | if (err) |
986 | goto error; | |
31dbd01f | 987 | } |
9ba69294 | 988 | |
420be4ed | 989 | remove_trailing_rmap_items(&mm_slot->rmap_list); |
d8ed45c5 | 990 | mmap_read_unlock(mm); |
d952b791 HD |
991 | |
992 | spin_lock(&ksm_mmlist_lock); | |
9ba69294 | 993 | ksm_scan.mm_slot = list_entry(mm_slot->mm_list.next, |
d952b791 | 994 | struct mm_slot, mm_list); |
9ba69294 | 995 | if (ksm_test_exit(mm)) { |
4ca3a69b | 996 | hash_del(&mm_slot->link); |
9ba69294 HD |
997 | list_del(&mm_slot->mm_list); |
998 | spin_unlock(&ksm_mmlist_lock); | |
999 | ||
1000 | free_mm_slot(mm_slot); | |
1001 | clear_bit(MMF_VM_MERGEABLE, &mm->flags); | |
9ba69294 | 1002 | mmdrop(mm); |
7496fea9 | 1003 | } else |
9ba69294 | 1004 | spin_unlock(&ksm_mmlist_lock); |
31dbd01f IE |
1005 | } |
1006 | ||
cbf86cfe HD |
1007 | /* Clean up stable nodes, but don't worry if some are still busy */ |
1008 | remove_all_stable_nodes(); | |
d952b791 | 1009 | ksm_scan.seqnr = 0; |
9ba69294 HD |
1010 | return 0; |
1011 | ||
1012 | error: | |
d8ed45c5 | 1013 | mmap_read_unlock(mm); |
31dbd01f | 1014 | spin_lock(&ksm_mmlist_lock); |
d952b791 | 1015 | ksm_scan.mm_slot = &ksm_mm_head; |
31dbd01f | 1016 | spin_unlock(&ksm_mmlist_lock); |
d952b791 | 1017 | return err; |
31dbd01f | 1018 | } |
2ffd8679 | 1019 | #endif /* CONFIG_SYSFS */ |
31dbd01f | 1020 | |
31dbd01f IE |
1021 | static u32 calc_checksum(struct page *page) |
1022 | { | |
1023 | u32 checksum; | |
9b04c5fe | 1024 | void *addr = kmap_atomic(page); |
59e1a2f4 | 1025 | checksum = xxhash(addr, PAGE_SIZE, 0); |
9b04c5fe | 1026 | kunmap_atomic(addr); |
31dbd01f IE |
1027 | return checksum; |
1028 | } | |
1029 | ||
31dbd01f IE |
1030 | static int write_protect_page(struct vm_area_struct *vma, struct page *page, |
1031 | pte_t *orig_pte) | |
1032 | { | |
1033 | struct mm_struct *mm = vma->vm_mm; | |
36eaff33 KS |
1034 | struct page_vma_mapped_walk pvmw = { |
1035 | .page = page, | |
1036 | .vma = vma, | |
1037 | }; | |
31dbd01f IE |
1038 | int swapped; |
1039 | int err = -EFAULT; | |
ac46d4f3 | 1040 | struct mmu_notifier_range range; |
31dbd01f | 1041 | |
36eaff33 KS |
1042 | pvmw.address = page_address_in_vma(page, vma); |
1043 | if (pvmw.address == -EFAULT) | |
31dbd01f IE |
1044 | goto out; |
1045 | ||
29ad768c | 1046 | BUG_ON(PageTransCompound(page)); |
6bdb913f | 1047 | |
7269f999 | 1048 | mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, |
6f4f13e8 | 1049 | pvmw.address, |
ac46d4f3 JG |
1050 | pvmw.address + PAGE_SIZE); |
1051 | mmu_notifier_invalidate_range_start(&range); | |
6bdb913f | 1052 | |
36eaff33 | 1053 | if (!page_vma_mapped_walk(&pvmw)) |
6bdb913f | 1054 | goto out_mn; |
36eaff33 KS |
1055 | if (WARN_ONCE(!pvmw.pte, "Unexpected PMD mapping?")) |
1056 | goto out_unlock; | |
31dbd01f | 1057 | |
595cd8f2 | 1058 | if (pte_write(*pvmw.pte) || pte_dirty(*pvmw.pte) || |
b3a81d08 MK |
1059 | (pte_protnone(*pvmw.pte) && pte_savedwrite(*pvmw.pte)) || |
1060 | mm_tlb_flush_pending(mm)) { | |
31dbd01f IE |
1061 | pte_t entry; |
1062 | ||
1063 | swapped = PageSwapCache(page); | |
36eaff33 | 1064 | flush_cache_page(vma, pvmw.address, page_to_pfn(page)); |
31dbd01f | 1065 | /* |
25985edc | 1066 | * Ok this is tricky, when get_user_pages_fast() run it doesn't |
31dbd01f IE |
1067 | * take any lock, therefore the check that we are going to make |
1068 | * with the pagecount against the mapcount is racey and | |
1069 | * O_DIRECT can happen right after the check. | |
1070 | * So we clear the pte and flush the tlb before the check | |
1071 | * this assure us that no O_DIRECT can happen after the check | |
1072 | * or in the middle of the check. | |
0f10851e JG |
1073 | * |
1074 | * No need to notify as we are downgrading page table to read | |
1075 | * only not changing it to point to a new page. | |
1076 | * | |
ad56b738 | 1077 | * See Documentation/vm/mmu_notifier.rst |
31dbd01f | 1078 | */ |
0f10851e | 1079 | entry = ptep_clear_flush(vma, pvmw.address, pvmw.pte); |
31dbd01f IE |
1080 | /* |
1081 | * Check that no O_DIRECT or similar I/O is in progress on the | |
1082 | * page | |
1083 | */ | |
31e855ea | 1084 | if (page_mapcount(page) + 1 + swapped != page_count(page)) { |
36eaff33 | 1085 | set_pte_at(mm, pvmw.address, pvmw.pte, entry); |
31dbd01f IE |
1086 | goto out_unlock; |
1087 | } | |
4e31635c HD |
1088 | if (pte_dirty(entry)) |
1089 | set_page_dirty(page); | |
595cd8f2 AK |
1090 | |
1091 | if (pte_protnone(entry)) | |
1092 | entry = pte_mkclean(pte_clear_savedwrite(entry)); | |
1093 | else | |
1094 | entry = pte_mkclean(pte_wrprotect(entry)); | |
36eaff33 | 1095 | set_pte_at_notify(mm, pvmw.address, pvmw.pte, entry); |
31dbd01f | 1096 | } |
36eaff33 | 1097 | *orig_pte = *pvmw.pte; |
31dbd01f IE |
1098 | err = 0; |
1099 | ||
1100 | out_unlock: | |
36eaff33 | 1101 | page_vma_mapped_walk_done(&pvmw); |
6bdb913f | 1102 | out_mn: |
ac46d4f3 | 1103 | mmu_notifier_invalidate_range_end(&range); |
31dbd01f IE |
1104 | out: |
1105 | return err; | |
1106 | } | |
1107 | ||
1108 | /** | |
1109 | * replace_page - replace page in vma by new ksm page | |
8dd3557a HD |
1110 | * @vma: vma that holds the pte pointing to page |
1111 | * @page: the page we are replacing by kpage | |
1112 | * @kpage: the ksm page we replace page by | |
31dbd01f IE |
1113 | * @orig_pte: the original value of the pte |
1114 | * | |
1115 | * Returns 0 on success, -EFAULT on failure. | |
1116 | */ | |
8dd3557a HD |
1117 | static int replace_page(struct vm_area_struct *vma, struct page *page, |
1118 | struct page *kpage, pte_t orig_pte) | |
31dbd01f IE |
1119 | { |
1120 | struct mm_struct *mm = vma->vm_mm; | |
31dbd01f IE |
1121 | pmd_t *pmd; |
1122 | pte_t *ptep; | |
e86c59b1 | 1123 | pte_t newpte; |
31dbd01f IE |
1124 | spinlock_t *ptl; |
1125 | unsigned long addr; | |
31dbd01f | 1126 | int err = -EFAULT; |
ac46d4f3 | 1127 | struct mmu_notifier_range range; |
31dbd01f | 1128 | |
8dd3557a | 1129 | addr = page_address_in_vma(page, vma); |
31dbd01f IE |
1130 | if (addr == -EFAULT) |
1131 | goto out; | |
1132 | ||
6219049a BL |
1133 | pmd = mm_find_pmd(mm, addr); |
1134 | if (!pmd) | |
31dbd01f | 1135 | goto out; |
31dbd01f | 1136 | |
7269f999 | 1137 | mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma, mm, addr, |
6f4f13e8 | 1138 | addr + PAGE_SIZE); |
ac46d4f3 | 1139 | mmu_notifier_invalidate_range_start(&range); |
6bdb913f | 1140 | |
31dbd01f IE |
1141 | ptep = pte_offset_map_lock(mm, pmd, addr, &ptl); |
1142 | if (!pte_same(*ptep, orig_pte)) { | |
1143 | pte_unmap_unlock(ptep, ptl); | |
6bdb913f | 1144 | goto out_mn; |
31dbd01f IE |
1145 | } |
1146 | ||
e86c59b1 CI |
1147 | /* |
1148 | * No need to check ksm_use_zero_pages here: we can only have a | |
457aef94 | 1149 | * zero_page here if ksm_use_zero_pages was enabled already. |
e86c59b1 CI |
1150 | */ |
1151 | if (!is_zero_pfn(page_to_pfn(kpage))) { | |
1152 | get_page(kpage); | |
1153 | page_add_anon_rmap(kpage, vma, addr, false); | |
1154 | newpte = mk_pte(kpage, vma->vm_page_prot); | |
1155 | } else { | |
1156 | newpte = pte_mkspecial(pfn_pte(page_to_pfn(kpage), | |
1157 | vma->vm_page_prot)); | |
a38c015f CI |
1158 | /* |
1159 | * We're replacing an anonymous page with a zero page, which is | |
1160 | * not anonymous. We need to do proper accounting otherwise we | |
1161 | * will get wrong values in /proc, and a BUG message in dmesg | |
1162 | * when tearing down the mm. | |
1163 | */ | |
1164 | dec_mm_counter(mm, MM_ANONPAGES); | |
e86c59b1 | 1165 | } |
31dbd01f IE |
1166 | |
1167 | flush_cache_page(vma, addr, pte_pfn(*ptep)); | |
0f10851e JG |
1168 | /* |
1169 | * No need to notify as we are replacing a read only page with another | |
1170 | * read only page with the same content. | |
1171 | * | |
ad56b738 | 1172 | * See Documentation/vm/mmu_notifier.rst |
0f10851e JG |
1173 | */ |
1174 | ptep_clear_flush(vma, addr, ptep); | |
e86c59b1 | 1175 | set_pte_at_notify(mm, addr, ptep, newpte); |
31dbd01f | 1176 | |
d281ee61 | 1177 | page_remove_rmap(page, false); |
ae52a2ad HD |
1178 | if (!page_mapped(page)) |
1179 | try_to_free_swap(page); | |
8dd3557a | 1180 | put_page(page); |
31dbd01f IE |
1181 | |
1182 | pte_unmap_unlock(ptep, ptl); | |
1183 | err = 0; | |
6bdb913f | 1184 | out_mn: |
ac46d4f3 | 1185 | mmu_notifier_invalidate_range_end(&range); |
31dbd01f IE |
1186 | out: |
1187 | return err; | |
1188 | } | |
1189 | ||
1190 | /* | |
1191 | * try_to_merge_one_page - take two pages and merge them into one | |
8dd3557a HD |
1192 | * @vma: the vma that holds the pte pointing to page |
1193 | * @page: the PageAnon page that we want to replace with kpage | |
80e14822 HD |
1194 | * @kpage: the PageKsm page that we want to map instead of page, |
1195 | * or NULL the first time when we want to use page as kpage. | |
31dbd01f IE |
1196 | * |
1197 | * This function returns 0 if the pages were merged, -EFAULT otherwise. | |
1198 | */ | |
1199 | static int try_to_merge_one_page(struct vm_area_struct *vma, | |
8dd3557a | 1200 | struct page *page, struct page *kpage) |
31dbd01f IE |
1201 | { |
1202 | pte_t orig_pte = __pte(0); | |
1203 | int err = -EFAULT; | |
1204 | ||
db114b83 HD |
1205 | if (page == kpage) /* ksm page forked */ |
1206 | return 0; | |
1207 | ||
8dd3557a | 1208 | if (!PageAnon(page)) |
31dbd01f IE |
1209 | goto out; |
1210 | ||
31dbd01f IE |
1211 | /* |
1212 | * We need the page lock to read a stable PageSwapCache in | |
1213 | * write_protect_page(). We use trylock_page() instead of | |
1214 | * lock_page() because we don't want to wait here - we | |
1215 | * prefer to continue scanning and merging different pages, | |
1216 | * then come back to this page when it is unlocked. | |
1217 | */ | |
8dd3557a | 1218 | if (!trylock_page(page)) |
31e855ea | 1219 | goto out; |
f765f540 KS |
1220 | |
1221 | if (PageTransCompound(page)) { | |
a7306c34 | 1222 | if (split_huge_page(page)) |
f765f540 KS |
1223 | goto out_unlock; |
1224 | } | |
1225 | ||
31dbd01f IE |
1226 | /* |
1227 | * If this anonymous page is mapped only here, its pte may need | |
1228 | * to be write-protected. If it's mapped elsewhere, all of its | |
1229 | * ptes are necessarily already write-protected. But in either | |
1230 | * case, we need to lock and check page_count is not raised. | |
1231 | */ | |
80e14822 HD |
1232 | if (write_protect_page(vma, page, &orig_pte) == 0) { |
1233 | if (!kpage) { | |
1234 | /* | |
1235 | * While we hold page lock, upgrade page from | |
1236 | * PageAnon+anon_vma to PageKsm+NULL stable_node: | |
1237 | * stable_tree_insert() will update stable_node. | |
1238 | */ | |
1239 | set_page_stable_node(page, NULL); | |
1240 | mark_page_accessed(page); | |
337ed7eb MK |
1241 | /* |
1242 | * Page reclaim just frees a clean page with no dirty | |
1243 | * ptes: make sure that the ksm page would be swapped. | |
1244 | */ | |
1245 | if (!PageDirty(page)) | |
1246 | SetPageDirty(page); | |
80e14822 HD |
1247 | err = 0; |
1248 | } else if (pages_identical(page, kpage)) | |
1249 | err = replace_page(vma, page, kpage, orig_pte); | |
1250 | } | |
31dbd01f | 1251 | |
80e14822 | 1252 | if ((vma->vm_flags & VM_LOCKED) && kpage && !err) { |
73848b46 | 1253 | munlock_vma_page(page); |
5ad64688 HD |
1254 | if (!PageMlocked(kpage)) { |
1255 | unlock_page(page); | |
5ad64688 HD |
1256 | lock_page(kpage); |
1257 | mlock_vma_page(kpage); | |
1258 | page = kpage; /* for final unlock */ | |
1259 | } | |
1260 | } | |
73848b46 | 1261 | |
f765f540 | 1262 | out_unlock: |
8dd3557a | 1263 | unlock_page(page); |
31dbd01f IE |
1264 | out: |
1265 | return err; | |
1266 | } | |
1267 | ||
81464e30 HD |
1268 | /* |
1269 | * try_to_merge_with_ksm_page - like try_to_merge_two_pages, | |
1270 | * but no new kernel page is allocated: kpage must already be a ksm page. | |
8dd3557a HD |
1271 | * |
1272 | * This function returns 0 if the pages were merged, -EFAULT otherwise. | |
81464e30 | 1273 | */ |
8dd3557a HD |
1274 | static int try_to_merge_with_ksm_page(struct rmap_item *rmap_item, |
1275 | struct page *page, struct page *kpage) | |
81464e30 | 1276 | { |
8dd3557a | 1277 | struct mm_struct *mm = rmap_item->mm; |
81464e30 HD |
1278 | struct vm_area_struct *vma; |
1279 | int err = -EFAULT; | |
1280 | ||
d8ed45c5 | 1281 | mmap_read_lock(mm); |
85c6e8dd AA |
1282 | vma = find_mergeable_vma(mm, rmap_item->address); |
1283 | if (!vma) | |
81464e30 HD |
1284 | goto out; |
1285 | ||
8dd3557a | 1286 | err = try_to_merge_one_page(vma, page, kpage); |
db114b83 HD |
1287 | if (err) |
1288 | goto out; | |
1289 | ||
bc56620b HD |
1290 | /* Unstable nid is in union with stable anon_vma: remove first */ |
1291 | remove_rmap_item_from_tree(rmap_item); | |
1292 | ||
c1e8d7c6 | 1293 | /* Must get reference to anon_vma while still holding mmap_lock */ |
9e60109f PZ |
1294 | rmap_item->anon_vma = vma->anon_vma; |
1295 | get_anon_vma(vma->anon_vma); | |
81464e30 | 1296 | out: |
d8ed45c5 | 1297 | mmap_read_unlock(mm); |
81464e30 HD |
1298 | return err; |
1299 | } | |
1300 | ||
31dbd01f IE |
1301 | /* |
1302 | * try_to_merge_two_pages - take two identical pages and prepare them | |
1303 | * to be merged into one page. | |
1304 | * | |
8dd3557a HD |
1305 | * This function returns the kpage if we successfully merged two identical |
1306 | * pages into one ksm page, NULL otherwise. | |
31dbd01f | 1307 | * |
80e14822 | 1308 | * Note that this function upgrades page to ksm page: if one of the pages |
31dbd01f IE |
1309 | * is already a ksm page, try_to_merge_with_ksm_page should be used. |
1310 | */ | |
8dd3557a HD |
1311 | static struct page *try_to_merge_two_pages(struct rmap_item *rmap_item, |
1312 | struct page *page, | |
1313 | struct rmap_item *tree_rmap_item, | |
1314 | struct page *tree_page) | |
31dbd01f | 1315 | { |
80e14822 | 1316 | int err; |
31dbd01f | 1317 | |
80e14822 | 1318 | err = try_to_merge_with_ksm_page(rmap_item, page, NULL); |
31dbd01f | 1319 | if (!err) { |
8dd3557a | 1320 | err = try_to_merge_with_ksm_page(tree_rmap_item, |
80e14822 | 1321 | tree_page, page); |
31dbd01f | 1322 | /* |
81464e30 HD |
1323 | * If that fails, we have a ksm page with only one pte |
1324 | * pointing to it: so break it. | |
31dbd01f | 1325 | */ |
4035c07a | 1326 | if (err) |
8dd3557a | 1327 | break_cow(rmap_item); |
31dbd01f | 1328 | } |
80e14822 | 1329 | return err ? NULL : page; |
31dbd01f IE |
1330 | } |
1331 | ||
2c653d0e AA |
1332 | static __always_inline |
1333 | bool __is_page_sharing_candidate(struct stable_node *stable_node, int offset) | |
1334 | { | |
1335 | VM_BUG_ON(stable_node->rmap_hlist_len < 0); | |
1336 | /* | |
1337 | * Check that at least one mapping still exists, otherwise | |
1338 | * there's no much point to merge and share with this | |
1339 | * stable_node, as the underlying tree_page of the other | |
1340 | * sharer is going to be freed soon. | |
1341 | */ | |
1342 | return stable_node->rmap_hlist_len && | |
1343 | stable_node->rmap_hlist_len + offset < ksm_max_page_sharing; | |
1344 | } | |
1345 | ||
1346 | static __always_inline | |
1347 | bool is_page_sharing_candidate(struct stable_node *stable_node) | |
1348 | { | |
1349 | return __is_page_sharing_candidate(stable_node, 0); | |
1350 | } | |
1351 | ||
c01f0b54 CIK |
1352 | static struct page *stable_node_dup(struct stable_node **_stable_node_dup, |
1353 | struct stable_node **_stable_node, | |
1354 | struct rb_root *root, | |
1355 | bool prune_stale_stable_nodes) | |
2c653d0e | 1356 | { |
b4fecc67 | 1357 | struct stable_node *dup, *found = NULL, *stable_node = *_stable_node; |
2c653d0e | 1358 | struct hlist_node *hlist_safe; |
8dc5ffcd | 1359 | struct page *_tree_page, *tree_page = NULL; |
2c653d0e AA |
1360 | int nr = 0; |
1361 | int found_rmap_hlist_len; | |
1362 | ||
1363 | if (!prune_stale_stable_nodes || | |
1364 | time_before(jiffies, stable_node->chain_prune_time + | |
1365 | msecs_to_jiffies( | |
1366 | ksm_stable_node_chains_prune_millisecs))) | |
1367 | prune_stale_stable_nodes = false; | |
1368 | else | |
1369 | stable_node->chain_prune_time = jiffies; | |
1370 | ||
1371 | hlist_for_each_entry_safe(dup, hlist_safe, | |
1372 | &stable_node->hlist, hlist_dup) { | |
1373 | cond_resched(); | |
1374 | /* | |
1375 | * We must walk all stable_node_dup to prune the stale | |
1376 | * stable nodes during lookup. | |
1377 | * | |
1378 | * get_ksm_page can drop the nodes from the | |
1379 | * stable_node->hlist if they point to freed pages | |
1380 | * (that's why we do a _safe walk). The "dup" | |
1381 | * stable_node parameter itself will be freed from | |
1382 | * under us if it returns NULL. | |
1383 | */ | |
2cee57d1 | 1384 | _tree_page = get_ksm_page(dup, GET_KSM_PAGE_NOLOCK); |
2c653d0e AA |
1385 | if (!_tree_page) |
1386 | continue; | |
1387 | nr += 1; | |
1388 | if (is_page_sharing_candidate(dup)) { | |
1389 | if (!found || | |
1390 | dup->rmap_hlist_len > found_rmap_hlist_len) { | |
1391 | if (found) | |
8dc5ffcd | 1392 | put_page(tree_page); |
2c653d0e AA |
1393 | found = dup; |
1394 | found_rmap_hlist_len = found->rmap_hlist_len; | |
8dc5ffcd | 1395 | tree_page = _tree_page; |
2c653d0e | 1396 | |
8dc5ffcd | 1397 | /* skip put_page for found dup */ |
2c653d0e AA |
1398 | if (!prune_stale_stable_nodes) |
1399 | break; | |
2c653d0e AA |
1400 | continue; |
1401 | } | |
1402 | } | |
1403 | put_page(_tree_page); | |
1404 | } | |
1405 | ||
80b18dfa AA |
1406 | if (found) { |
1407 | /* | |
1408 | * nr is counting all dups in the chain only if | |
1409 | * prune_stale_stable_nodes is true, otherwise we may | |
1410 | * break the loop at nr == 1 even if there are | |
1411 | * multiple entries. | |
1412 | */ | |
1413 | if (prune_stale_stable_nodes && nr == 1) { | |
2c653d0e AA |
1414 | /* |
1415 | * If there's not just one entry it would | |
1416 | * corrupt memory, better BUG_ON. In KSM | |
1417 | * context with no lock held it's not even | |
1418 | * fatal. | |
1419 | */ | |
1420 | BUG_ON(stable_node->hlist.first->next); | |
1421 | ||
1422 | /* | |
1423 | * There's just one entry and it is below the | |
1424 | * deduplication limit so drop the chain. | |
1425 | */ | |
1426 | rb_replace_node(&stable_node->node, &found->node, | |
1427 | root); | |
1428 | free_stable_node(stable_node); | |
1429 | ksm_stable_node_chains--; | |
1430 | ksm_stable_node_dups--; | |
b4fecc67 | 1431 | /* |
0ba1d0f7 AA |
1432 | * NOTE: the caller depends on the stable_node |
1433 | * to be equal to stable_node_dup if the chain | |
1434 | * was collapsed. | |
b4fecc67 | 1435 | */ |
0ba1d0f7 AA |
1436 | *_stable_node = found; |
1437 | /* | |
1438 | * Just for robustneess as stable_node is | |
1439 | * otherwise left as a stable pointer, the | |
1440 | * compiler shall optimize it away at build | |
1441 | * time. | |
1442 | */ | |
1443 | stable_node = NULL; | |
80b18dfa AA |
1444 | } else if (stable_node->hlist.first != &found->hlist_dup && |
1445 | __is_page_sharing_candidate(found, 1)) { | |
2c653d0e | 1446 | /* |
80b18dfa AA |
1447 | * If the found stable_node dup can accept one |
1448 | * more future merge (in addition to the one | |
1449 | * that is underway) and is not at the head of | |
1450 | * the chain, put it there so next search will | |
1451 | * be quicker in the !prune_stale_stable_nodes | |
1452 | * case. | |
1453 | * | |
1454 | * NOTE: it would be inaccurate to use nr > 1 | |
1455 | * instead of checking the hlist.first pointer | |
1456 | * directly, because in the | |
1457 | * prune_stale_stable_nodes case "nr" isn't | |
1458 | * the position of the found dup in the chain, | |
1459 | * but the total number of dups in the chain. | |
2c653d0e AA |
1460 | */ |
1461 | hlist_del(&found->hlist_dup); | |
1462 | hlist_add_head(&found->hlist_dup, | |
1463 | &stable_node->hlist); | |
1464 | } | |
1465 | } | |
1466 | ||
8dc5ffcd AA |
1467 | *_stable_node_dup = found; |
1468 | return tree_page; | |
2c653d0e AA |
1469 | } |
1470 | ||
1471 | static struct stable_node *stable_node_dup_any(struct stable_node *stable_node, | |
1472 | struct rb_root *root) | |
1473 | { | |
1474 | if (!is_stable_node_chain(stable_node)) | |
1475 | return stable_node; | |
1476 | if (hlist_empty(&stable_node->hlist)) { | |
1477 | free_stable_node_chain(stable_node, root); | |
1478 | return NULL; | |
1479 | } | |
1480 | return hlist_entry(stable_node->hlist.first, | |
1481 | typeof(*stable_node), hlist_dup); | |
1482 | } | |
1483 | ||
8dc5ffcd AA |
1484 | /* |
1485 | * Like for get_ksm_page, this function can free the *_stable_node and | |
1486 | * *_stable_node_dup if the returned tree_page is NULL. | |
1487 | * | |
1488 | * It can also free and overwrite *_stable_node with the found | |
1489 | * stable_node_dup if the chain is collapsed (in which case | |
1490 | * *_stable_node will be equal to *_stable_node_dup like if the chain | |
1491 | * never existed). It's up to the caller to verify tree_page is not | |
1492 | * NULL before dereferencing *_stable_node or *_stable_node_dup. | |
1493 | * | |
1494 | * *_stable_node_dup is really a second output parameter of this | |
1495 | * function and will be overwritten in all cases, the caller doesn't | |
1496 | * need to initialize it. | |
1497 | */ | |
1498 | static struct page *__stable_node_chain(struct stable_node **_stable_node_dup, | |
1499 | struct stable_node **_stable_node, | |
1500 | struct rb_root *root, | |
1501 | bool prune_stale_stable_nodes) | |
2c653d0e | 1502 | { |
b4fecc67 | 1503 | struct stable_node *stable_node = *_stable_node; |
2c653d0e AA |
1504 | if (!is_stable_node_chain(stable_node)) { |
1505 | if (is_page_sharing_candidate(stable_node)) { | |
8dc5ffcd | 1506 | *_stable_node_dup = stable_node; |
2cee57d1 | 1507 | return get_ksm_page(stable_node, GET_KSM_PAGE_NOLOCK); |
2c653d0e | 1508 | } |
8dc5ffcd AA |
1509 | /* |
1510 | * _stable_node_dup set to NULL means the stable_node | |
1511 | * reached the ksm_max_page_sharing limit. | |
1512 | */ | |
1513 | *_stable_node_dup = NULL; | |
2c653d0e AA |
1514 | return NULL; |
1515 | } | |
8dc5ffcd | 1516 | return stable_node_dup(_stable_node_dup, _stable_node, root, |
2c653d0e AA |
1517 | prune_stale_stable_nodes); |
1518 | } | |
1519 | ||
8dc5ffcd AA |
1520 | static __always_inline struct page *chain_prune(struct stable_node **s_n_d, |
1521 | struct stable_node **s_n, | |
1522 | struct rb_root *root) | |
2c653d0e | 1523 | { |
8dc5ffcd | 1524 | return __stable_node_chain(s_n_d, s_n, root, true); |
2c653d0e AA |
1525 | } |
1526 | ||
8dc5ffcd AA |
1527 | static __always_inline struct page *chain(struct stable_node **s_n_d, |
1528 | struct stable_node *s_n, | |
1529 | struct rb_root *root) | |
2c653d0e | 1530 | { |
8dc5ffcd AA |
1531 | struct stable_node *old_stable_node = s_n; |
1532 | struct page *tree_page; | |
1533 | ||
1534 | tree_page = __stable_node_chain(s_n_d, &s_n, root, false); | |
1535 | /* not pruning dups so s_n cannot have changed */ | |
1536 | VM_BUG_ON(s_n != old_stable_node); | |
1537 | return tree_page; | |
2c653d0e AA |
1538 | } |
1539 | ||
31dbd01f | 1540 | /* |
8dd3557a | 1541 | * stable_tree_search - search for page inside the stable tree |
31dbd01f IE |
1542 | * |
1543 | * This function checks if there is a page inside the stable tree | |
1544 | * with identical content to the page that we are scanning right now. | |
1545 | * | |
7b6ba2c7 | 1546 | * This function returns the stable tree node of identical content if found, |
31dbd01f IE |
1547 | * NULL otherwise. |
1548 | */ | |
62b61f61 | 1549 | static struct page *stable_tree_search(struct page *page) |
31dbd01f | 1550 | { |
90bd6fd3 | 1551 | int nid; |
ef53d16c | 1552 | struct rb_root *root; |
4146d2d6 HD |
1553 | struct rb_node **new; |
1554 | struct rb_node *parent; | |
2c653d0e | 1555 | struct stable_node *stable_node, *stable_node_dup, *stable_node_any; |
4146d2d6 | 1556 | struct stable_node *page_node; |
31dbd01f | 1557 | |
4146d2d6 HD |
1558 | page_node = page_stable_node(page); |
1559 | if (page_node && page_node->head != &migrate_nodes) { | |
1560 | /* ksm page forked */ | |
08beca44 | 1561 | get_page(page); |
62b61f61 | 1562 | return page; |
08beca44 HD |
1563 | } |
1564 | ||
90bd6fd3 | 1565 | nid = get_kpfn_nid(page_to_pfn(page)); |
ef53d16c | 1566 | root = root_stable_tree + nid; |
4146d2d6 | 1567 | again: |
ef53d16c | 1568 | new = &root->rb_node; |
4146d2d6 | 1569 | parent = NULL; |
90bd6fd3 | 1570 | |
4146d2d6 | 1571 | while (*new) { |
4035c07a | 1572 | struct page *tree_page; |
31dbd01f IE |
1573 | int ret; |
1574 | ||
08beca44 | 1575 | cond_resched(); |
4146d2d6 | 1576 | stable_node = rb_entry(*new, struct stable_node, node); |
2c653d0e | 1577 | stable_node_any = NULL; |
8dc5ffcd | 1578 | tree_page = chain_prune(&stable_node_dup, &stable_node, root); |
b4fecc67 AA |
1579 | /* |
1580 | * NOTE: stable_node may have been freed by | |
1581 | * chain_prune() if the returned stable_node_dup is | |
1582 | * not NULL. stable_node_dup may have been inserted in | |
1583 | * the rbtree instead as a regular stable_node (in | |
1584 | * order to collapse the stable_node chain if a single | |
0ba1d0f7 AA |
1585 | * stable_node dup was found in it). In such case the |
1586 | * stable_node is overwritten by the calleee to point | |
1587 | * to the stable_node_dup that was collapsed in the | |
1588 | * stable rbtree and stable_node will be equal to | |
1589 | * stable_node_dup like if the chain never existed. | |
b4fecc67 | 1590 | */ |
2c653d0e AA |
1591 | if (!stable_node_dup) { |
1592 | /* | |
1593 | * Either all stable_node dups were full in | |
1594 | * this stable_node chain, or this chain was | |
1595 | * empty and should be rb_erased. | |
1596 | */ | |
1597 | stable_node_any = stable_node_dup_any(stable_node, | |
1598 | root); | |
1599 | if (!stable_node_any) { | |
1600 | /* rb_erase just run */ | |
1601 | goto again; | |
1602 | } | |
1603 | /* | |
1604 | * Take any of the stable_node dups page of | |
1605 | * this stable_node chain to let the tree walk | |
1606 | * continue. All KSM pages belonging to the | |
1607 | * stable_node dups in a stable_node chain | |
1608 | * have the same content and they're | |
457aef94 | 1609 | * write protected at all times. Any will work |
2c653d0e AA |
1610 | * fine to continue the walk. |
1611 | */ | |
2cee57d1 YS |
1612 | tree_page = get_ksm_page(stable_node_any, |
1613 | GET_KSM_PAGE_NOLOCK); | |
2c653d0e AA |
1614 | } |
1615 | VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); | |
f2e5ff85 AA |
1616 | if (!tree_page) { |
1617 | /* | |
1618 | * If we walked over a stale stable_node, | |
1619 | * get_ksm_page() will call rb_erase() and it | |
1620 | * may rebalance the tree from under us. So | |
1621 | * restart the search from scratch. Returning | |
1622 | * NULL would be safe too, but we'd generate | |
1623 | * false negative insertions just because some | |
1624 | * stable_node was stale. | |
1625 | */ | |
1626 | goto again; | |
1627 | } | |
31dbd01f | 1628 | |
4035c07a | 1629 | ret = memcmp_pages(page, tree_page); |
c8d6553b | 1630 | put_page(tree_page); |
31dbd01f | 1631 | |
4146d2d6 | 1632 | parent = *new; |
c8d6553b | 1633 | if (ret < 0) |
4146d2d6 | 1634 | new = &parent->rb_left; |
c8d6553b | 1635 | else if (ret > 0) |
4146d2d6 | 1636 | new = &parent->rb_right; |
c8d6553b | 1637 | else { |
2c653d0e AA |
1638 | if (page_node) { |
1639 | VM_BUG_ON(page_node->head != &migrate_nodes); | |
1640 | /* | |
1641 | * Test if the migrated page should be merged | |
1642 | * into a stable node dup. If the mapcount is | |
1643 | * 1 we can migrate it with another KSM page | |
1644 | * without adding it to the chain. | |
1645 | */ | |
1646 | if (page_mapcount(page) > 1) | |
1647 | goto chain_append; | |
1648 | } | |
1649 | ||
1650 | if (!stable_node_dup) { | |
1651 | /* | |
1652 | * If the stable_node is a chain and | |
1653 | * we got a payload match in memcmp | |
1654 | * but we cannot merge the scanned | |
1655 | * page in any of the existing | |
1656 | * stable_node dups because they're | |
1657 | * all full, we need to wait the | |
1658 | * scanned page to find itself a match | |
1659 | * in the unstable tree to create a | |
1660 | * brand new KSM page to add later to | |
1661 | * the dups of this stable_node. | |
1662 | */ | |
1663 | return NULL; | |
1664 | } | |
1665 | ||
c8d6553b HD |
1666 | /* |
1667 | * Lock and unlock the stable_node's page (which | |
1668 | * might already have been migrated) so that page | |
1669 | * migration is sure to notice its raised count. | |
1670 | * It would be more elegant to return stable_node | |
1671 | * than kpage, but that involves more changes. | |
1672 | */ | |
2cee57d1 YS |
1673 | tree_page = get_ksm_page(stable_node_dup, |
1674 | GET_KSM_PAGE_TRYLOCK); | |
1675 | ||
1676 | if (PTR_ERR(tree_page) == -EBUSY) | |
1677 | return ERR_PTR(-EBUSY); | |
1678 | ||
2c653d0e AA |
1679 | if (unlikely(!tree_page)) |
1680 | /* | |
1681 | * The tree may have been rebalanced, | |
1682 | * so re-evaluate parent and new. | |
1683 | */ | |
4146d2d6 | 1684 | goto again; |
2c653d0e AA |
1685 | unlock_page(tree_page); |
1686 | ||
1687 | if (get_kpfn_nid(stable_node_dup->kpfn) != | |
1688 | NUMA(stable_node_dup->nid)) { | |
1689 | put_page(tree_page); | |
1690 | goto replace; | |
1691 | } | |
1692 | return tree_page; | |
c8d6553b | 1693 | } |
31dbd01f IE |
1694 | } |
1695 | ||
4146d2d6 HD |
1696 | if (!page_node) |
1697 | return NULL; | |
1698 | ||
1699 | list_del(&page_node->list); | |
1700 | DO_NUMA(page_node->nid = nid); | |
1701 | rb_link_node(&page_node->node, parent, new); | |
ef53d16c | 1702 | rb_insert_color(&page_node->node, root); |
2c653d0e AA |
1703 | out: |
1704 | if (is_page_sharing_candidate(page_node)) { | |
1705 | get_page(page); | |
1706 | return page; | |
1707 | } else | |
1708 | return NULL; | |
4146d2d6 HD |
1709 | |
1710 | replace: | |
b4fecc67 AA |
1711 | /* |
1712 | * If stable_node was a chain and chain_prune collapsed it, | |
0ba1d0f7 AA |
1713 | * stable_node has been updated to be the new regular |
1714 | * stable_node. A collapse of the chain is indistinguishable | |
1715 | * from the case there was no chain in the stable | |
1716 | * rbtree. Otherwise stable_node is the chain and | |
1717 | * stable_node_dup is the dup to replace. | |
b4fecc67 | 1718 | */ |
0ba1d0f7 | 1719 | if (stable_node_dup == stable_node) { |
b4fecc67 AA |
1720 | VM_BUG_ON(is_stable_node_chain(stable_node_dup)); |
1721 | VM_BUG_ON(is_stable_node_dup(stable_node_dup)); | |
2c653d0e AA |
1722 | /* there is no chain */ |
1723 | if (page_node) { | |
1724 | VM_BUG_ON(page_node->head != &migrate_nodes); | |
1725 | list_del(&page_node->list); | |
1726 | DO_NUMA(page_node->nid = nid); | |
b4fecc67 AA |
1727 | rb_replace_node(&stable_node_dup->node, |
1728 | &page_node->node, | |
2c653d0e AA |
1729 | root); |
1730 | if (is_page_sharing_candidate(page_node)) | |
1731 | get_page(page); | |
1732 | else | |
1733 | page = NULL; | |
1734 | } else { | |
b4fecc67 | 1735 | rb_erase(&stable_node_dup->node, root); |
2c653d0e AA |
1736 | page = NULL; |
1737 | } | |
4146d2d6 | 1738 | } else { |
2c653d0e AA |
1739 | VM_BUG_ON(!is_stable_node_chain(stable_node)); |
1740 | __stable_node_dup_del(stable_node_dup); | |
1741 | if (page_node) { | |
1742 | VM_BUG_ON(page_node->head != &migrate_nodes); | |
1743 | list_del(&page_node->list); | |
1744 | DO_NUMA(page_node->nid = nid); | |
1745 | stable_node_chain_add_dup(page_node, stable_node); | |
1746 | if (is_page_sharing_candidate(page_node)) | |
1747 | get_page(page); | |
1748 | else | |
1749 | page = NULL; | |
1750 | } else { | |
1751 | page = NULL; | |
1752 | } | |
4146d2d6 | 1753 | } |
2c653d0e AA |
1754 | stable_node_dup->head = &migrate_nodes; |
1755 | list_add(&stable_node_dup->list, stable_node_dup->head); | |
4146d2d6 | 1756 | return page; |
2c653d0e AA |
1757 | |
1758 | chain_append: | |
1759 | /* stable_node_dup could be null if it reached the limit */ | |
1760 | if (!stable_node_dup) | |
1761 | stable_node_dup = stable_node_any; | |
b4fecc67 AA |
1762 | /* |
1763 | * If stable_node was a chain and chain_prune collapsed it, | |
0ba1d0f7 AA |
1764 | * stable_node has been updated to be the new regular |
1765 | * stable_node. A collapse of the chain is indistinguishable | |
1766 | * from the case there was no chain in the stable | |
1767 | * rbtree. Otherwise stable_node is the chain and | |
1768 | * stable_node_dup is the dup to replace. | |
b4fecc67 | 1769 | */ |
0ba1d0f7 | 1770 | if (stable_node_dup == stable_node) { |
b4fecc67 | 1771 | VM_BUG_ON(is_stable_node_dup(stable_node_dup)); |
2c653d0e AA |
1772 | /* chain is missing so create it */ |
1773 | stable_node = alloc_stable_node_chain(stable_node_dup, | |
1774 | root); | |
1775 | if (!stable_node) | |
1776 | return NULL; | |
1777 | } | |
1778 | /* | |
1779 | * Add this stable_node dup that was | |
1780 | * migrated to the stable_node chain | |
1781 | * of the current nid for this page | |
1782 | * content. | |
1783 | */ | |
b4fecc67 | 1784 | VM_BUG_ON(!is_stable_node_dup(stable_node_dup)); |
2c653d0e AA |
1785 | VM_BUG_ON(page_node->head != &migrate_nodes); |
1786 | list_del(&page_node->list); | |
1787 | DO_NUMA(page_node->nid = nid); | |
1788 | stable_node_chain_add_dup(page_node, stable_node); | |
1789 | goto out; | |
31dbd01f IE |
1790 | } |
1791 | ||
1792 | /* | |
e850dcf5 | 1793 | * stable_tree_insert - insert stable tree node pointing to new ksm page |
31dbd01f IE |
1794 | * into the stable tree. |
1795 | * | |
7b6ba2c7 HD |
1796 | * This function returns the stable tree node just allocated on success, |
1797 | * NULL otherwise. | |
31dbd01f | 1798 | */ |
7b6ba2c7 | 1799 | static struct stable_node *stable_tree_insert(struct page *kpage) |
31dbd01f | 1800 | { |
90bd6fd3 PH |
1801 | int nid; |
1802 | unsigned long kpfn; | |
ef53d16c | 1803 | struct rb_root *root; |
90bd6fd3 | 1804 | struct rb_node **new; |
f2e5ff85 | 1805 | struct rb_node *parent; |
2c653d0e AA |
1806 | struct stable_node *stable_node, *stable_node_dup, *stable_node_any; |
1807 | bool need_chain = false; | |
31dbd01f | 1808 | |
90bd6fd3 PH |
1809 | kpfn = page_to_pfn(kpage); |
1810 | nid = get_kpfn_nid(kpfn); | |
ef53d16c | 1811 | root = root_stable_tree + nid; |
f2e5ff85 AA |
1812 | again: |
1813 | parent = NULL; | |
ef53d16c | 1814 | new = &root->rb_node; |
90bd6fd3 | 1815 | |
31dbd01f | 1816 | while (*new) { |
4035c07a | 1817 | struct page *tree_page; |
31dbd01f IE |
1818 | int ret; |
1819 | ||
08beca44 | 1820 | cond_resched(); |
7b6ba2c7 | 1821 | stable_node = rb_entry(*new, struct stable_node, node); |
2c653d0e | 1822 | stable_node_any = NULL; |
8dc5ffcd | 1823 | tree_page = chain(&stable_node_dup, stable_node, root); |
2c653d0e AA |
1824 | if (!stable_node_dup) { |
1825 | /* | |
1826 | * Either all stable_node dups were full in | |
1827 | * this stable_node chain, or this chain was | |
1828 | * empty and should be rb_erased. | |
1829 | */ | |
1830 | stable_node_any = stable_node_dup_any(stable_node, | |
1831 | root); | |
1832 | if (!stable_node_any) { | |
1833 | /* rb_erase just run */ | |
1834 | goto again; | |
1835 | } | |
1836 | /* | |
1837 | * Take any of the stable_node dups page of | |
1838 | * this stable_node chain to let the tree walk | |
1839 | * continue. All KSM pages belonging to the | |
1840 | * stable_node dups in a stable_node chain | |
1841 | * have the same content and they're | |
457aef94 | 1842 | * write protected at all times. Any will work |
2c653d0e AA |
1843 | * fine to continue the walk. |
1844 | */ | |
2cee57d1 YS |
1845 | tree_page = get_ksm_page(stable_node_any, |
1846 | GET_KSM_PAGE_NOLOCK); | |
2c653d0e AA |
1847 | } |
1848 | VM_BUG_ON(!stable_node_dup ^ !!stable_node_any); | |
f2e5ff85 AA |
1849 | if (!tree_page) { |
1850 | /* | |
1851 | * If we walked over a stale stable_node, | |
1852 | * get_ksm_page() will call rb_erase() and it | |
1853 | * may rebalance the tree from under us. So | |
1854 | * restart the search from scratch. Returning | |
1855 | * NULL would be safe too, but we'd generate | |
1856 | * false negative insertions just because some | |
1857 | * stable_node was stale. | |
1858 | */ | |
1859 | goto again; | |
1860 | } | |
31dbd01f | 1861 | |
4035c07a HD |
1862 | ret = memcmp_pages(kpage, tree_page); |
1863 | put_page(tree_page); | |
31dbd01f IE |
1864 | |
1865 | parent = *new; | |
1866 | if (ret < 0) | |
1867 | new = &parent->rb_left; | |
1868 | else if (ret > 0) | |
1869 | new = &parent->rb_right; | |
1870 | else { | |
2c653d0e AA |
1871 | need_chain = true; |
1872 | break; | |
31dbd01f IE |
1873 | } |
1874 | } | |
1875 | ||
2c653d0e AA |
1876 | stable_node_dup = alloc_stable_node(); |
1877 | if (!stable_node_dup) | |
7b6ba2c7 | 1878 | return NULL; |
31dbd01f | 1879 | |
2c653d0e AA |
1880 | INIT_HLIST_HEAD(&stable_node_dup->hlist); |
1881 | stable_node_dup->kpfn = kpfn; | |
1882 | set_page_stable_node(kpage, stable_node_dup); | |
1883 | stable_node_dup->rmap_hlist_len = 0; | |
1884 | DO_NUMA(stable_node_dup->nid = nid); | |
1885 | if (!need_chain) { | |
1886 | rb_link_node(&stable_node_dup->node, parent, new); | |
1887 | rb_insert_color(&stable_node_dup->node, root); | |
1888 | } else { | |
1889 | if (!is_stable_node_chain(stable_node)) { | |
1890 | struct stable_node *orig = stable_node; | |
1891 | /* chain is missing so create it */ | |
1892 | stable_node = alloc_stable_node_chain(orig, root); | |
1893 | if (!stable_node) { | |
1894 | free_stable_node(stable_node_dup); | |
1895 | return NULL; | |
1896 | } | |
1897 | } | |
1898 | stable_node_chain_add_dup(stable_node_dup, stable_node); | |
1899 | } | |
08beca44 | 1900 | |
2c653d0e | 1901 | return stable_node_dup; |
31dbd01f IE |
1902 | } |
1903 | ||
1904 | /* | |
8dd3557a HD |
1905 | * unstable_tree_search_insert - search for identical page, |
1906 | * else insert rmap_item into the unstable tree. | |
31dbd01f IE |
1907 | * |
1908 | * This function searches for a page in the unstable tree identical to the | |
1909 | * page currently being scanned; and if no identical page is found in the | |
1910 | * tree, we insert rmap_item as a new object into the unstable tree. | |
1911 | * | |
1912 | * This function returns pointer to rmap_item found to be identical | |
1913 | * to the currently scanned page, NULL otherwise. | |
1914 | * | |
1915 | * This function does both searching and inserting, because they share | |
1916 | * the same walking algorithm in an rbtree. | |
1917 | */ | |
8dd3557a HD |
1918 | static |
1919 | struct rmap_item *unstable_tree_search_insert(struct rmap_item *rmap_item, | |
1920 | struct page *page, | |
1921 | struct page **tree_pagep) | |
31dbd01f | 1922 | { |
90bd6fd3 PH |
1923 | struct rb_node **new; |
1924 | struct rb_root *root; | |
31dbd01f | 1925 | struct rb_node *parent = NULL; |
90bd6fd3 PH |
1926 | int nid; |
1927 | ||
1928 | nid = get_kpfn_nid(page_to_pfn(page)); | |
ef53d16c | 1929 | root = root_unstable_tree + nid; |
90bd6fd3 | 1930 | new = &root->rb_node; |
31dbd01f IE |
1931 | |
1932 | while (*new) { | |
1933 | struct rmap_item *tree_rmap_item; | |
8dd3557a | 1934 | struct page *tree_page; |
31dbd01f IE |
1935 | int ret; |
1936 | ||
d178f27f | 1937 | cond_resched(); |
31dbd01f | 1938 | tree_rmap_item = rb_entry(*new, struct rmap_item, node); |
8dd3557a | 1939 | tree_page = get_mergeable_page(tree_rmap_item); |
c8f95ed1 | 1940 | if (!tree_page) |
31dbd01f IE |
1941 | return NULL; |
1942 | ||
1943 | /* | |
8dd3557a | 1944 | * Don't substitute a ksm page for a forked page. |
31dbd01f | 1945 | */ |
8dd3557a HD |
1946 | if (page == tree_page) { |
1947 | put_page(tree_page); | |
31dbd01f IE |
1948 | return NULL; |
1949 | } | |
1950 | ||
8dd3557a | 1951 | ret = memcmp_pages(page, tree_page); |
31dbd01f IE |
1952 | |
1953 | parent = *new; | |
1954 | if (ret < 0) { | |
8dd3557a | 1955 | put_page(tree_page); |
31dbd01f IE |
1956 | new = &parent->rb_left; |
1957 | } else if (ret > 0) { | |
8dd3557a | 1958 | put_page(tree_page); |
31dbd01f | 1959 | new = &parent->rb_right; |
b599cbdf HD |
1960 | } else if (!ksm_merge_across_nodes && |
1961 | page_to_nid(tree_page) != nid) { | |
1962 | /* | |
1963 | * If tree_page has been migrated to another NUMA node, | |
1964 | * it will be flushed out and put in the right unstable | |
1965 | * tree next time: only merge with it when across_nodes. | |
1966 | */ | |
1967 | put_page(tree_page); | |
1968 | return NULL; | |
31dbd01f | 1969 | } else { |
8dd3557a | 1970 | *tree_pagep = tree_page; |
31dbd01f IE |
1971 | return tree_rmap_item; |
1972 | } | |
1973 | } | |
1974 | ||
7b6ba2c7 | 1975 | rmap_item->address |= UNSTABLE_FLAG; |
31dbd01f | 1976 | rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK); |
e850dcf5 | 1977 | DO_NUMA(rmap_item->nid = nid); |
31dbd01f | 1978 | rb_link_node(&rmap_item->node, parent, new); |
90bd6fd3 | 1979 | rb_insert_color(&rmap_item->node, root); |
31dbd01f | 1980 | |
473b0ce4 | 1981 | ksm_pages_unshared++; |
31dbd01f IE |
1982 | return NULL; |
1983 | } | |
1984 | ||
1985 | /* | |
1986 | * stable_tree_append - add another rmap_item to the linked list of | |
1987 | * rmap_items hanging off a given node of the stable tree, all sharing | |
1988 | * the same ksm page. | |
1989 | */ | |
1990 | static void stable_tree_append(struct rmap_item *rmap_item, | |
2c653d0e AA |
1991 | struct stable_node *stable_node, |
1992 | bool max_page_sharing_bypass) | |
31dbd01f | 1993 | { |
2c653d0e AA |
1994 | /* |
1995 | * rmap won't find this mapping if we don't insert the | |
1996 | * rmap_item in the right stable_node | |
1997 | * duplicate. page_migration could break later if rmap breaks, | |
1998 | * so we can as well crash here. We really need to check for | |
1999 | * rmap_hlist_len == STABLE_NODE_CHAIN, but we can as well check | |
457aef94 | 2000 | * for other negative values as an underflow if detected here |
2c653d0e AA |
2001 | * for the first time (and not when decreasing rmap_hlist_len) |
2002 | * would be sign of memory corruption in the stable_node. | |
2003 | */ | |
2004 | BUG_ON(stable_node->rmap_hlist_len < 0); | |
2005 | ||
2006 | stable_node->rmap_hlist_len++; | |
2007 | if (!max_page_sharing_bypass) | |
2008 | /* possibly non fatal but unexpected overflow, only warn */ | |
2009 | WARN_ON_ONCE(stable_node->rmap_hlist_len > | |
2010 | ksm_max_page_sharing); | |
2011 | ||
7b6ba2c7 | 2012 | rmap_item->head = stable_node; |
31dbd01f | 2013 | rmap_item->address |= STABLE_FLAG; |
7b6ba2c7 | 2014 | hlist_add_head(&rmap_item->hlist, &stable_node->hlist); |
e178dfde | 2015 | |
7b6ba2c7 HD |
2016 | if (rmap_item->hlist.next) |
2017 | ksm_pages_sharing++; | |
2018 | else | |
2019 | ksm_pages_shared++; | |
31dbd01f IE |
2020 | } |
2021 | ||
2022 | /* | |
81464e30 HD |
2023 | * cmp_and_merge_page - first see if page can be merged into the stable tree; |
2024 | * if not, compare checksum to previous and if it's the same, see if page can | |
2025 | * be inserted into the unstable tree, or merged with a page already there and | |
2026 | * both transferred to the stable tree. | |
31dbd01f IE |
2027 | * |
2028 | * @page: the page that we are searching identical page to. | |
2029 | * @rmap_item: the reverse mapping into the virtual address of this page | |
2030 | */ | |
2031 | static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item) | |
2032 | { | |
4b22927f | 2033 | struct mm_struct *mm = rmap_item->mm; |
31dbd01f | 2034 | struct rmap_item *tree_rmap_item; |
8dd3557a | 2035 | struct page *tree_page = NULL; |
7b6ba2c7 | 2036 | struct stable_node *stable_node; |
8dd3557a | 2037 | struct page *kpage; |
31dbd01f IE |
2038 | unsigned int checksum; |
2039 | int err; | |
2c653d0e | 2040 | bool max_page_sharing_bypass = false; |
31dbd01f | 2041 | |
4146d2d6 HD |
2042 | stable_node = page_stable_node(page); |
2043 | if (stable_node) { | |
2044 | if (stable_node->head != &migrate_nodes && | |
2c653d0e AA |
2045 | get_kpfn_nid(READ_ONCE(stable_node->kpfn)) != |
2046 | NUMA(stable_node->nid)) { | |
2047 | stable_node_dup_del(stable_node); | |
4146d2d6 HD |
2048 | stable_node->head = &migrate_nodes; |
2049 | list_add(&stable_node->list, stable_node->head); | |
2050 | } | |
2051 | if (stable_node->head != &migrate_nodes && | |
2052 | rmap_item->head == stable_node) | |
2053 | return; | |
2c653d0e AA |
2054 | /* |
2055 | * If it's a KSM fork, allow it to go over the sharing limit | |
2056 | * without warnings. | |
2057 | */ | |
2058 | if (!is_page_sharing_candidate(stable_node)) | |
2059 | max_page_sharing_bypass = true; | |
4146d2d6 | 2060 | } |
31dbd01f IE |
2061 | |
2062 | /* We first start with searching the page inside the stable tree */ | |
62b61f61 | 2063 | kpage = stable_tree_search(page); |
4146d2d6 HD |
2064 | if (kpage == page && rmap_item->head == stable_node) { |
2065 | put_page(kpage); | |
2066 | return; | |
2067 | } | |
2068 | ||
2069 | remove_rmap_item_from_tree(rmap_item); | |
2070 | ||
62b61f61 | 2071 | if (kpage) { |
2cee57d1 YS |
2072 | if (PTR_ERR(kpage) == -EBUSY) |
2073 | return; | |
2074 | ||
08beca44 | 2075 | err = try_to_merge_with_ksm_page(rmap_item, page, kpage); |
31dbd01f IE |
2076 | if (!err) { |
2077 | /* | |
2078 | * The page was successfully merged: | |
2079 | * add its rmap_item to the stable tree. | |
2080 | */ | |
5ad64688 | 2081 | lock_page(kpage); |
2c653d0e AA |
2082 | stable_tree_append(rmap_item, page_stable_node(kpage), |
2083 | max_page_sharing_bypass); | |
5ad64688 | 2084 | unlock_page(kpage); |
31dbd01f | 2085 | } |
8dd3557a | 2086 | put_page(kpage); |
31dbd01f IE |
2087 | return; |
2088 | } | |
2089 | ||
2090 | /* | |
4035c07a HD |
2091 | * If the hash value of the page has changed from the last time |
2092 | * we calculated it, this page is changing frequently: therefore we | |
2093 | * don't want to insert it in the unstable tree, and we don't want | |
2094 | * to waste our time searching for something identical to it there. | |
31dbd01f IE |
2095 | */ |
2096 | checksum = calc_checksum(page); | |
2097 | if (rmap_item->oldchecksum != checksum) { | |
2098 | rmap_item->oldchecksum = checksum; | |
2099 | return; | |
2100 | } | |
2101 | ||
e86c59b1 CI |
2102 | /* |
2103 | * Same checksum as an empty page. We attempt to merge it with the | |
2104 | * appropriate zero page if the user enabled this via sysfs. | |
2105 | */ | |
2106 | if (ksm_use_zero_pages && (checksum == zero_checksum)) { | |
2107 | struct vm_area_struct *vma; | |
2108 | ||
d8ed45c5 | 2109 | mmap_read_lock(mm); |
4b22927f | 2110 | vma = find_mergeable_vma(mm, rmap_item->address); |
56df70a6 MS |
2111 | if (vma) { |
2112 | err = try_to_merge_one_page(vma, page, | |
2113 | ZERO_PAGE(rmap_item->address)); | |
2114 | } else { | |
2115 | /* | |
2116 | * If the vma is out of date, we do not need to | |
2117 | * continue. | |
2118 | */ | |
2119 | err = 0; | |
2120 | } | |
d8ed45c5 | 2121 | mmap_read_unlock(mm); |
e86c59b1 CI |
2122 | /* |
2123 | * In case of failure, the page was not really empty, so we | |
2124 | * need to continue. Otherwise we're done. | |
2125 | */ | |
2126 | if (!err) | |
2127 | return; | |
2128 | } | |
8dd3557a HD |
2129 | tree_rmap_item = |
2130 | unstable_tree_search_insert(rmap_item, page, &tree_page); | |
31dbd01f | 2131 | if (tree_rmap_item) { |
77da2ba0 CI |
2132 | bool split; |
2133 | ||
8dd3557a HD |
2134 | kpage = try_to_merge_two_pages(rmap_item, page, |
2135 | tree_rmap_item, tree_page); | |
77da2ba0 CI |
2136 | /* |
2137 | * If both pages we tried to merge belong to the same compound | |
2138 | * page, then we actually ended up increasing the reference | |
2139 | * count of the same compound page twice, and split_huge_page | |
2140 | * failed. | |
2141 | * Here we set a flag if that happened, and we use it later to | |
2142 | * try split_huge_page again. Since we call put_page right | |
2143 | * afterwards, the reference count will be correct and | |
2144 | * split_huge_page should succeed. | |
2145 | */ | |
2146 | split = PageTransCompound(page) | |
2147 | && compound_head(page) == compound_head(tree_page); | |
8dd3557a | 2148 | put_page(tree_page); |
8dd3557a | 2149 | if (kpage) { |
bc56620b HD |
2150 | /* |
2151 | * The pages were successfully merged: insert new | |
2152 | * node in the stable tree and add both rmap_items. | |
2153 | */ | |
5ad64688 | 2154 | lock_page(kpage); |
7b6ba2c7 HD |
2155 | stable_node = stable_tree_insert(kpage); |
2156 | if (stable_node) { | |
2c653d0e AA |
2157 | stable_tree_append(tree_rmap_item, stable_node, |
2158 | false); | |
2159 | stable_tree_append(rmap_item, stable_node, | |
2160 | false); | |
7b6ba2c7 | 2161 | } |
5ad64688 | 2162 | unlock_page(kpage); |
7b6ba2c7 | 2163 | |
31dbd01f IE |
2164 | /* |
2165 | * If we fail to insert the page into the stable tree, | |
2166 | * we will have 2 virtual addresses that are pointing | |
2167 | * to a ksm page left outside the stable tree, | |
2168 | * in which case we need to break_cow on both. | |
2169 | */ | |
7b6ba2c7 | 2170 | if (!stable_node) { |
8dd3557a HD |
2171 | break_cow(tree_rmap_item); |
2172 | break_cow(rmap_item); | |
31dbd01f | 2173 | } |
77da2ba0 CI |
2174 | } else if (split) { |
2175 | /* | |
2176 | * We are here if we tried to merge two pages and | |
2177 | * failed because they both belonged to the same | |
2178 | * compound page. We will split the page now, but no | |
2179 | * merging will take place. | |
2180 | * We do not want to add the cost of a full lock; if | |
2181 | * the page is locked, it is better to skip it and | |
2182 | * perhaps try again later. | |
2183 | */ | |
2184 | if (!trylock_page(page)) | |
2185 | return; | |
2186 | split_huge_page(page); | |
2187 | unlock_page(page); | |
31dbd01f | 2188 | } |
31dbd01f IE |
2189 | } |
2190 | } | |
2191 | ||
2192 | static struct rmap_item *get_next_rmap_item(struct mm_slot *mm_slot, | |
6514d511 | 2193 | struct rmap_item **rmap_list, |
31dbd01f IE |
2194 | unsigned long addr) |
2195 | { | |
2196 | struct rmap_item *rmap_item; | |
2197 | ||
6514d511 HD |
2198 | while (*rmap_list) { |
2199 | rmap_item = *rmap_list; | |
93d17715 | 2200 | if ((rmap_item->address & PAGE_MASK) == addr) |
31dbd01f | 2201 | return rmap_item; |
31dbd01f IE |
2202 | if (rmap_item->address > addr) |
2203 | break; | |
6514d511 | 2204 | *rmap_list = rmap_item->rmap_list; |
31dbd01f | 2205 | remove_rmap_item_from_tree(rmap_item); |
31dbd01f IE |
2206 | free_rmap_item(rmap_item); |
2207 | } | |
2208 | ||
2209 | rmap_item = alloc_rmap_item(); | |
2210 | if (rmap_item) { | |
2211 | /* It has already been zeroed */ | |
2212 | rmap_item->mm = mm_slot->mm; | |
2213 | rmap_item->address = addr; | |
6514d511 HD |
2214 | rmap_item->rmap_list = *rmap_list; |
2215 | *rmap_list = rmap_item; | |
31dbd01f IE |
2216 | } |
2217 | return rmap_item; | |
2218 | } | |
2219 | ||
2220 | static struct rmap_item *scan_get_next_rmap_item(struct page **page) | |
2221 | { | |
2222 | struct mm_struct *mm; | |
2223 | struct mm_slot *slot; | |
2224 | struct vm_area_struct *vma; | |
2225 | struct rmap_item *rmap_item; | |
90bd6fd3 | 2226 | int nid; |
31dbd01f IE |
2227 | |
2228 | if (list_empty(&ksm_mm_head.mm_list)) | |
2229 | return NULL; | |
2230 | ||
2231 | slot = ksm_scan.mm_slot; | |
2232 | if (slot == &ksm_mm_head) { | |
2919bfd0 HD |
2233 | /* |
2234 | * A number of pages can hang around indefinitely on per-cpu | |
2235 | * pagevecs, raised page count preventing write_protect_page | |
2236 | * from merging them. Though it doesn't really matter much, | |
2237 | * it is puzzling to see some stuck in pages_volatile until | |
2238 | * other activity jostles them out, and they also prevented | |
2239 | * LTP's KSM test from succeeding deterministically; so drain | |
2240 | * them here (here rather than on entry to ksm_do_scan(), | |
2241 | * so we don't IPI too often when pages_to_scan is set low). | |
2242 | */ | |
2243 | lru_add_drain_all(); | |
2244 | ||
4146d2d6 HD |
2245 | /* |
2246 | * Whereas stale stable_nodes on the stable_tree itself | |
2247 | * get pruned in the regular course of stable_tree_search(), | |
2248 | * those moved out to the migrate_nodes list can accumulate: | |
2249 | * so prune them once before each full scan. | |
2250 | */ | |
2251 | if (!ksm_merge_across_nodes) { | |
03640418 | 2252 | struct stable_node *stable_node, *next; |
4146d2d6 HD |
2253 | struct page *page; |
2254 | ||
03640418 GT |
2255 | list_for_each_entry_safe(stable_node, next, |
2256 | &migrate_nodes, list) { | |
2cee57d1 YS |
2257 | page = get_ksm_page(stable_node, |
2258 | GET_KSM_PAGE_NOLOCK); | |
4146d2d6 HD |
2259 | if (page) |
2260 | put_page(page); | |
2261 | cond_resched(); | |
2262 | } | |
2263 | } | |
2264 | ||
ef53d16c | 2265 | for (nid = 0; nid < ksm_nr_node_ids; nid++) |
90bd6fd3 | 2266 | root_unstable_tree[nid] = RB_ROOT; |
31dbd01f IE |
2267 | |
2268 | spin_lock(&ksm_mmlist_lock); | |
2269 | slot = list_entry(slot->mm_list.next, struct mm_slot, mm_list); | |
2270 | ksm_scan.mm_slot = slot; | |
2271 | spin_unlock(&ksm_mmlist_lock); | |
2b472611 HD |
2272 | /* |
2273 | * Although we tested list_empty() above, a racing __ksm_exit | |
2274 | * of the last mm on the list may have removed it since then. | |
2275 | */ | |
2276 | if (slot == &ksm_mm_head) | |
2277 | return NULL; | |
31dbd01f IE |
2278 | next_mm: |
2279 | ksm_scan.address = 0; | |
6514d511 | 2280 | ksm_scan.rmap_list = &slot->rmap_list; |
31dbd01f IE |
2281 | } |
2282 | ||
2283 | mm = slot->mm; | |
d8ed45c5 | 2284 | mmap_read_lock(mm); |
9ba69294 HD |
2285 | if (ksm_test_exit(mm)) |
2286 | vma = NULL; | |
2287 | else | |
2288 | vma = find_vma(mm, ksm_scan.address); | |
2289 | ||
2290 | for (; vma; vma = vma->vm_next) { | |
31dbd01f IE |
2291 | if (!(vma->vm_flags & VM_MERGEABLE)) |
2292 | continue; | |
2293 | if (ksm_scan.address < vma->vm_start) | |
2294 | ksm_scan.address = vma->vm_start; | |
2295 | if (!vma->anon_vma) | |
2296 | ksm_scan.address = vma->vm_end; | |
2297 | ||
2298 | while (ksm_scan.address < vma->vm_end) { | |
9ba69294 HD |
2299 | if (ksm_test_exit(mm)) |
2300 | break; | |
31dbd01f | 2301 | *page = follow_page(vma, ksm_scan.address, FOLL_GET); |
21ae5b01 AA |
2302 | if (IS_ERR_OR_NULL(*page)) { |
2303 | ksm_scan.address += PAGE_SIZE; | |
2304 | cond_resched(); | |
2305 | continue; | |
2306 | } | |
f765f540 | 2307 | if (PageAnon(*page)) { |
31dbd01f IE |
2308 | flush_anon_page(vma, *page, ksm_scan.address); |
2309 | flush_dcache_page(*page); | |
2310 | rmap_item = get_next_rmap_item(slot, | |
6514d511 | 2311 | ksm_scan.rmap_list, ksm_scan.address); |
31dbd01f | 2312 | if (rmap_item) { |
6514d511 HD |
2313 | ksm_scan.rmap_list = |
2314 | &rmap_item->rmap_list; | |
31dbd01f IE |
2315 | ksm_scan.address += PAGE_SIZE; |
2316 | } else | |
2317 | put_page(*page); | |
d8ed45c5 | 2318 | mmap_read_unlock(mm); |
31dbd01f IE |
2319 | return rmap_item; |
2320 | } | |
21ae5b01 | 2321 | put_page(*page); |
31dbd01f IE |
2322 | ksm_scan.address += PAGE_SIZE; |
2323 | cond_resched(); | |
2324 | } | |
2325 | } | |
2326 | ||
9ba69294 HD |
2327 | if (ksm_test_exit(mm)) { |
2328 | ksm_scan.address = 0; | |
6514d511 | 2329 | ksm_scan.rmap_list = &slot->rmap_list; |
9ba69294 | 2330 | } |
31dbd01f IE |
2331 | /* |
2332 | * Nuke all the rmap_items that are above this current rmap: | |
2333 | * because there were no VM_MERGEABLE vmas with such addresses. | |
2334 | */ | |
420be4ed | 2335 | remove_trailing_rmap_items(ksm_scan.rmap_list); |
31dbd01f IE |
2336 | |
2337 | spin_lock(&ksm_mmlist_lock); | |
cd551f97 HD |
2338 | ksm_scan.mm_slot = list_entry(slot->mm_list.next, |
2339 | struct mm_slot, mm_list); | |
2340 | if (ksm_scan.address == 0) { | |
2341 | /* | |
c1e8d7c6 | 2342 | * We've completed a full scan of all vmas, holding mmap_lock |
cd551f97 HD |
2343 | * throughout, and found no VM_MERGEABLE: so do the same as |
2344 | * __ksm_exit does to remove this mm from all our lists now. | |
9ba69294 HD |
2345 | * This applies either when cleaning up after __ksm_exit |
2346 | * (but beware: we can reach here even before __ksm_exit), | |
2347 | * or when all VM_MERGEABLE areas have been unmapped (and | |
c1e8d7c6 | 2348 | * mmap_lock then protects against race with MADV_MERGEABLE). |
cd551f97 | 2349 | */ |
4ca3a69b | 2350 | hash_del(&slot->link); |
cd551f97 | 2351 | list_del(&slot->mm_list); |
9ba69294 HD |
2352 | spin_unlock(&ksm_mmlist_lock); |
2353 | ||
cd551f97 HD |
2354 | free_mm_slot(slot); |
2355 | clear_bit(MMF_VM_MERGEABLE, &mm->flags); | |
d8ed45c5 | 2356 | mmap_read_unlock(mm); |
9ba69294 HD |
2357 | mmdrop(mm); |
2358 | } else { | |
d8ed45c5 | 2359 | mmap_read_unlock(mm); |
7496fea9 | 2360 | /* |
3e4e28c5 | 2361 | * mmap_read_unlock(mm) first because after |
7496fea9 ZC |
2362 | * spin_unlock(&ksm_mmlist_lock) run, the "mm" may |
2363 | * already have been freed under us by __ksm_exit() | |
2364 | * because the "mm_slot" is still hashed and | |
2365 | * ksm_scan.mm_slot doesn't point to it anymore. | |
2366 | */ | |
2367 | spin_unlock(&ksm_mmlist_lock); | |
cd551f97 | 2368 | } |
31dbd01f IE |
2369 | |
2370 | /* Repeat until we've completed scanning the whole list */ | |
cd551f97 | 2371 | slot = ksm_scan.mm_slot; |
31dbd01f IE |
2372 | if (slot != &ksm_mm_head) |
2373 | goto next_mm; | |
2374 | ||
31dbd01f IE |
2375 | ksm_scan.seqnr++; |
2376 | return NULL; | |
2377 | } | |
2378 | ||
2379 | /** | |
2380 | * ksm_do_scan - the ksm scanner main worker function. | |
b7701a5f | 2381 | * @scan_npages: number of pages we want to scan before we return. |
31dbd01f IE |
2382 | */ |
2383 | static void ksm_do_scan(unsigned int scan_npages) | |
2384 | { | |
2385 | struct rmap_item *rmap_item; | |
3f649ab7 | 2386 | struct page *page; |
31dbd01f | 2387 | |
878aee7d | 2388 | while (scan_npages-- && likely(!freezing(current))) { |
31dbd01f IE |
2389 | cond_resched(); |
2390 | rmap_item = scan_get_next_rmap_item(&page); | |
2391 | if (!rmap_item) | |
2392 | return; | |
4146d2d6 | 2393 | cmp_and_merge_page(page, rmap_item); |
31dbd01f IE |
2394 | put_page(page); |
2395 | } | |
2396 | } | |
2397 | ||
6e158384 HD |
2398 | static int ksmd_should_run(void) |
2399 | { | |
2400 | return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list); | |
2401 | } | |
2402 | ||
31dbd01f IE |
2403 | static int ksm_scan_thread(void *nothing) |
2404 | { | |
fcf9a0ef KT |
2405 | unsigned int sleep_ms; |
2406 | ||
878aee7d | 2407 | set_freezable(); |
339aa624 | 2408 | set_user_nice(current, 5); |
31dbd01f IE |
2409 | |
2410 | while (!kthread_should_stop()) { | |
6e158384 | 2411 | mutex_lock(&ksm_thread_mutex); |
ef4d43a8 | 2412 | wait_while_offlining(); |
6e158384 | 2413 | if (ksmd_should_run()) |
31dbd01f | 2414 | ksm_do_scan(ksm_thread_pages_to_scan); |
6e158384 HD |
2415 | mutex_unlock(&ksm_thread_mutex); |
2416 | ||
878aee7d AA |
2417 | try_to_freeze(); |
2418 | ||
6e158384 | 2419 | if (ksmd_should_run()) { |
fcf9a0ef KT |
2420 | sleep_ms = READ_ONCE(ksm_thread_sleep_millisecs); |
2421 | wait_event_interruptible_timeout(ksm_iter_wait, | |
2422 | sleep_ms != READ_ONCE(ksm_thread_sleep_millisecs), | |
2423 | msecs_to_jiffies(sleep_ms)); | |
31dbd01f | 2424 | } else { |
878aee7d | 2425 | wait_event_freezable(ksm_thread_wait, |
6e158384 | 2426 | ksmd_should_run() || kthread_should_stop()); |
31dbd01f IE |
2427 | } |
2428 | } | |
2429 | return 0; | |
2430 | } | |
2431 | ||
f8af4da3 HD |
2432 | int ksm_madvise(struct vm_area_struct *vma, unsigned long start, |
2433 | unsigned long end, int advice, unsigned long *vm_flags) | |
2434 | { | |
2435 | struct mm_struct *mm = vma->vm_mm; | |
d952b791 | 2436 | int err; |
f8af4da3 HD |
2437 | |
2438 | switch (advice) { | |
2439 | case MADV_MERGEABLE: | |
2440 | /* | |
2441 | * Be somewhat over-protective for now! | |
2442 | */ | |
2443 | if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE | | |
2444 | VM_PFNMAP | VM_IO | VM_DONTEXPAND | | |
0661a336 | 2445 | VM_HUGETLB | VM_MIXEDMAP)) |
f8af4da3 HD |
2446 | return 0; /* just ignore the advice */ |
2447 | ||
e1fb4a08 DJ |
2448 | if (vma_is_dax(vma)) |
2449 | return 0; | |
2450 | ||
12564485 SA |
2451 | #ifdef VM_SAO |
2452 | if (*vm_flags & VM_SAO) | |
2453 | return 0; | |
2454 | #endif | |
74a04967 KA |
2455 | #ifdef VM_SPARC_ADI |
2456 | if (*vm_flags & VM_SPARC_ADI) | |
2457 | return 0; | |
2458 | #endif | |
cc2383ec | 2459 | |
d952b791 HD |
2460 | if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) { |
2461 | err = __ksm_enter(mm); | |
2462 | if (err) | |
2463 | return err; | |
2464 | } | |
f8af4da3 HD |
2465 | |
2466 | *vm_flags |= VM_MERGEABLE; | |
2467 | break; | |
2468 | ||
2469 | case MADV_UNMERGEABLE: | |
2470 | if (!(*vm_flags & VM_MERGEABLE)) | |
2471 | return 0; /* just ignore the advice */ | |
2472 | ||
d952b791 HD |
2473 | if (vma->anon_vma) { |
2474 | err = unmerge_ksm_pages(vma, start, end); | |
2475 | if (err) | |
2476 | return err; | |
2477 | } | |
f8af4da3 HD |
2478 | |
2479 | *vm_flags &= ~VM_MERGEABLE; | |
2480 | break; | |
2481 | } | |
2482 | ||
2483 | return 0; | |
2484 | } | |
33cf1707 | 2485 | EXPORT_SYMBOL_GPL(ksm_madvise); |
f8af4da3 HD |
2486 | |
2487 | int __ksm_enter(struct mm_struct *mm) | |
2488 | { | |
6e158384 HD |
2489 | struct mm_slot *mm_slot; |
2490 | int needs_wakeup; | |
2491 | ||
2492 | mm_slot = alloc_mm_slot(); | |
31dbd01f IE |
2493 | if (!mm_slot) |
2494 | return -ENOMEM; | |
2495 | ||
6e158384 HD |
2496 | /* Check ksm_run too? Would need tighter locking */ |
2497 | needs_wakeup = list_empty(&ksm_mm_head.mm_list); | |
2498 | ||
31dbd01f IE |
2499 | spin_lock(&ksm_mmlist_lock); |
2500 | insert_to_mm_slots_hash(mm, mm_slot); | |
2501 | /* | |
cbf86cfe HD |
2502 | * When KSM_RUN_MERGE (or KSM_RUN_STOP), |
2503 | * insert just behind the scanning cursor, to let the area settle | |
31dbd01f IE |
2504 | * down a little; when fork is followed by immediate exec, we don't |
2505 | * want ksmd to waste time setting up and tearing down an rmap_list. | |
cbf86cfe HD |
2506 | * |
2507 | * But when KSM_RUN_UNMERGE, it's important to insert ahead of its | |
2508 | * scanning cursor, otherwise KSM pages in newly forked mms will be | |
2509 | * missed: then we might as well insert at the end of the list. | |
31dbd01f | 2510 | */ |
cbf86cfe HD |
2511 | if (ksm_run & KSM_RUN_UNMERGE) |
2512 | list_add_tail(&mm_slot->mm_list, &ksm_mm_head.mm_list); | |
2513 | else | |
2514 | list_add_tail(&mm_slot->mm_list, &ksm_scan.mm_slot->mm_list); | |
31dbd01f IE |
2515 | spin_unlock(&ksm_mmlist_lock); |
2516 | ||
f8af4da3 | 2517 | set_bit(MMF_VM_MERGEABLE, &mm->flags); |
f1f10076 | 2518 | mmgrab(mm); |
6e158384 HD |
2519 | |
2520 | if (needs_wakeup) | |
2521 | wake_up_interruptible(&ksm_thread_wait); | |
2522 | ||
f8af4da3 HD |
2523 | return 0; |
2524 | } | |
2525 | ||
1c2fb7a4 | 2526 | void __ksm_exit(struct mm_struct *mm) |
f8af4da3 | 2527 | { |
cd551f97 | 2528 | struct mm_slot *mm_slot; |
9ba69294 | 2529 | int easy_to_free = 0; |
cd551f97 | 2530 | |
31dbd01f | 2531 | /* |
9ba69294 HD |
2532 | * This process is exiting: if it's straightforward (as is the |
2533 | * case when ksmd was never running), free mm_slot immediately. | |
2534 | * But if it's at the cursor or has rmap_items linked to it, use | |
c1e8d7c6 | 2535 | * mmap_lock to synchronize with any break_cows before pagetables |
9ba69294 HD |
2536 | * are freed, and leave the mm_slot on the list for ksmd to free. |
2537 | * Beware: ksm may already have noticed it exiting and freed the slot. | |
31dbd01f | 2538 | */ |
9ba69294 | 2539 | |
cd551f97 HD |
2540 | spin_lock(&ksm_mmlist_lock); |
2541 | mm_slot = get_mm_slot(mm); | |
9ba69294 | 2542 | if (mm_slot && ksm_scan.mm_slot != mm_slot) { |
6514d511 | 2543 | if (!mm_slot->rmap_list) { |
4ca3a69b | 2544 | hash_del(&mm_slot->link); |
9ba69294 HD |
2545 | list_del(&mm_slot->mm_list); |
2546 | easy_to_free = 1; | |
2547 | } else { | |
2548 | list_move(&mm_slot->mm_list, | |
2549 | &ksm_scan.mm_slot->mm_list); | |
2550 | } | |
cd551f97 | 2551 | } |
cd551f97 HD |
2552 | spin_unlock(&ksm_mmlist_lock); |
2553 | ||
9ba69294 HD |
2554 | if (easy_to_free) { |
2555 | free_mm_slot(mm_slot); | |
2556 | clear_bit(MMF_VM_MERGEABLE, &mm->flags); | |
2557 | mmdrop(mm); | |
2558 | } else if (mm_slot) { | |
d8ed45c5 ML |
2559 | mmap_write_lock(mm); |
2560 | mmap_write_unlock(mm); | |
9ba69294 | 2561 | } |
31dbd01f IE |
2562 | } |
2563 | ||
cbf86cfe | 2564 | struct page *ksm_might_need_to_copy(struct page *page, |
5ad64688 HD |
2565 | struct vm_area_struct *vma, unsigned long address) |
2566 | { | |
cbf86cfe | 2567 | struct anon_vma *anon_vma = page_anon_vma(page); |
5ad64688 HD |
2568 | struct page *new_page; |
2569 | ||
cbf86cfe HD |
2570 | if (PageKsm(page)) { |
2571 | if (page_stable_node(page) && | |
2572 | !(ksm_run & KSM_RUN_UNMERGE)) | |
2573 | return page; /* no need to copy it */ | |
2574 | } else if (!anon_vma) { | |
2575 | return page; /* no need to copy it */ | |
2576 | } else if (anon_vma->root == vma->anon_vma->root && | |
2577 | page->index == linear_page_index(vma, address)) { | |
2578 | return page; /* still no need to copy it */ | |
2579 | } | |
2580 | if (!PageUptodate(page)) | |
2581 | return page; /* let do_swap_page report the error */ | |
2582 | ||
5ad64688 | 2583 | new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address); |
62fdb163 HD |
2584 | if (new_page && mem_cgroup_charge(new_page, vma->vm_mm, GFP_KERNEL)) { |
2585 | put_page(new_page); | |
2586 | new_page = NULL; | |
2587 | } | |
5ad64688 HD |
2588 | if (new_page) { |
2589 | copy_user_highpage(new_page, page, address, vma); | |
2590 | ||
2591 | SetPageDirty(new_page); | |
2592 | __SetPageUptodate(new_page); | |
48c935ad | 2593 | __SetPageLocked(new_page); |
5ad64688 HD |
2594 | } |
2595 | ||
5ad64688 HD |
2596 | return new_page; |
2597 | } | |
2598 | ||
1df631ae | 2599 | void rmap_walk_ksm(struct page *page, struct rmap_walk_control *rwc) |
e9995ef9 HD |
2600 | { |
2601 | struct stable_node *stable_node; | |
e9995ef9 | 2602 | struct rmap_item *rmap_item; |
e9995ef9 HD |
2603 | int search_new_forks = 0; |
2604 | ||
309381fe | 2605 | VM_BUG_ON_PAGE(!PageKsm(page), page); |
9f32624b JK |
2606 | |
2607 | /* | |
2608 | * Rely on the page lock to protect against concurrent modifications | |
2609 | * to that page's node of the stable tree. | |
2610 | */ | |
309381fe | 2611 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
e9995ef9 HD |
2612 | |
2613 | stable_node = page_stable_node(page); | |
2614 | if (!stable_node) | |
1df631ae | 2615 | return; |
e9995ef9 | 2616 | again: |
b67bfe0d | 2617 | hlist_for_each_entry(rmap_item, &stable_node->hlist, hlist) { |
e9995ef9 | 2618 | struct anon_vma *anon_vma = rmap_item->anon_vma; |
5beb4930 | 2619 | struct anon_vma_chain *vmac; |
e9995ef9 HD |
2620 | struct vm_area_struct *vma; |
2621 | ||
ad12695f | 2622 | cond_resched(); |
b6b19f25 | 2623 | anon_vma_lock_read(anon_vma); |
bf181b9f ML |
2624 | anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root, |
2625 | 0, ULONG_MAX) { | |
1105a2fc JH |
2626 | unsigned long addr; |
2627 | ||
ad12695f | 2628 | cond_resched(); |
5beb4930 | 2629 | vma = vmac->vma; |
1105a2fc JH |
2630 | |
2631 | /* Ignore the stable/unstable/sqnr flags */ | |
cd7fae26 | 2632 | addr = rmap_item->address & PAGE_MASK; |
1105a2fc JH |
2633 | |
2634 | if (addr < vma->vm_start || addr >= vma->vm_end) | |
e9995ef9 HD |
2635 | continue; |
2636 | /* | |
2637 | * Initially we examine only the vma which covers this | |
2638 | * rmap_item; but later, if there is still work to do, | |
2639 | * we examine covering vmas in other mms: in case they | |
2640 | * were forked from the original since ksmd passed. | |
2641 | */ | |
2642 | if ((rmap_item->mm == vma->vm_mm) == search_new_forks) | |
2643 | continue; | |
2644 | ||
0dd1c7bb JK |
2645 | if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg)) |
2646 | continue; | |
2647 | ||
1105a2fc | 2648 | if (!rwc->rmap_one(page, vma, addr, rwc->arg)) { |
b6b19f25 | 2649 | anon_vma_unlock_read(anon_vma); |
1df631ae | 2650 | return; |
e9995ef9 | 2651 | } |
0dd1c7bb JK |
2652 | if (rwc->done && rwc->done(page)) { |
2653 | anon_vma_unlock_read(anon_vma); | |
1df631ae | 2654 | return; |
0dd1c7bb | 2655 | } |
e9995ef9 | 2656 | } |
b6b19f25 | 2657 | anon_vma_unlock_read(anon_vma); |
e9995ef9 HD |
2658 | } |
2659 | if (!search_new_forks++) | |
2660 | goto again; | |
e9995ef9 HD |
2661 | } |
2662 | ||
52629506 | 2663 | #ifdef CONFIG_MIGRATION |
e9995ef9 HD |
2664 | void ksm_migrate_page(struct page *newpage, struct page *oldpage) |
2665 | { | |
2666 | struct stable_node *stable_node; | |
2667 | ||
309381fe SL |
2668 | VM_BUG_ON_PAGE(!PageLocked(oldpage), oldpage); |
2669 | VM_BUG_ON_PAGE(!PageLocked(newpage), newpage); | |
2670 | VM_BUG_ON_PAGE(newpage->mapping != oldpage->mapping, newpage); | |
e9995ef9 HD |
2671 | |
2672 | stable_node = page_stable_node(newpage); | |
2673 | if (stable_node) { | |
309381fe | 2674 | VM_BUG_ON_PAGE(stable_node->kpfn != page_to_pfn(oldpage), oldpage); |
62b61f61 | 2675 | stable_node->kpfn = page_to_pfn(newpage); |
c8d6553b HD |
2676 | /* |
2677 | * newpage->mapping was set in advance; now we need smp_wmb() | |
2678 | * to make sure that the new stable_node->kpfn is visible | |
2679 | * to get_ksm_page() before it can see that oldpage->mapping | |
2680 | * has gone stale (or that PageSwapCache has been cleared). | |
2681 | */ | |
2682 | smp_wmb(); | |
2683 | set_page_stable_node(oldpage, NULL); | |
e9995ef9 HD |
2684 | } |
2685 | } | |
2686 | #endif /* CONFIG_MIGRATION */ | |
2687 | ||
62b61f61 | 2688 | #ifdef CONFIG_MEMORY_HOTREMOVE |
ef4d43a8 HD |
2689 | static void wait_while_offlining(void) |
2690 | { | |
2691 | while (ksm_run & KSM_RUN_OFFLINE) { | |
2692 | mutex_unlock(&ksm_thread_mutex); | |
2693 | wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE), | |
74316201 | 2694 | TASK_UNINTERRUPTIBLE); |
ef4d43a8 HD |
2695 | mutex_lock(&ksm_thread_mutex); |
2696 | } | |
2697 | } | |
2698 | ||
2c653d0e AA |
2699 | static bool stable_node_dup_remove_range(struct stable_node *stable_node, |
2700 | unsigned long start_pfn, | |
2701 | unsigned long end_pfn) | |
2702 | { | |
2703 | if (stable_node->kpfn >= start_pfn && | |
2704 | stable_node->kpfn < end_pfn) { | |
2705 | /* | |
2706 | * Don't get_ksm_page, page has already gone: | |
2707 | * which is why we keep kpfn instead of page* | |
2708 | */ | |
2709 | remove_node_from_stable_tree(stable_node); | |
2710 | return true; | |
2711 | } | |
2712 | return false; | |
2713 | } | |
2714 | ||
2715 | static bool stable_node_chain_remove_range(struct stable_node *stable_node, | |
2716 | unsigned long start_pfn, | |
2717 | unsigned long end_pfn, | |
2718 | struct rb_root *root) | |
2719 | { | |
2720 | struct stable_node *dup; | |
2721 | struct hlist_node *hlist_safe; | |
2722 | ||
2723 | if (!is_stable_node_chain(stable_node)) { | |
2724 | VM_BUG_ON(is_stable_node_dup(stable_node)); | |
2725 | return stable_node_dup_remove_range(stable_node, start_pfn, | |
2726 | end_pfn); | |
2727 | } | |
2728 | ||
2729 | hlist_for_each_entry_safe(dup, hlist_safe, | |
2730 | &stable_node->hlist, hlist_dup) { | |
2731 | VM_BUG_ON(!is_stable_node_dup(dup)); | |
2732 | stable_node_dup_remove_range(dup, start_pfn, end_pfn); | |
2733 | } | |
2734 | if (hlist_empty(&stable_node->hlist)) { | |
2735 | free_stable_node_chain(stable_node, root); | |
2736 | return true; /* notify caller that tree was rebalanced */ | |
2737 | } else | |
2738 | return false; | |
2739 | } | |
2740 | ||
ee0ea59c HD |
2741 | static void ksm_check_stable_tree(unsigned long start_pfn, |
2742 | unsigned long end_pfn) | |
62b61f61 | 2743 | { |
03640418 | 2744 | struct stable_node *stable_node, *next; |
62b61f61 | 2745 | struct rb_node *node; |
90bd6fd3 | 2746 | int nid; |
62b61f61 | 2747 | |
ef53d16c HD |
2748 | for (nid = 0; nid < ksm_nr_node_ids; nid++) { |
2749 | node = rb_first(root_stable_tree + nid); | |
ee0ea59c | 2750 | while (node) { |
90bd6fd3 | 2751 | stable_node = rb_entry(node, struct stable_node, node); |
2c653d0e AA |
2752 | if (stable_node_chain_remove_range(stable_node, |
2753 | start_pfn, end_pfn, | |
2754 | root_stable_tree + | |
2755 | nid)) | |
ef53d16c | 2756 | node = rb_first(root_stable_tree + nid); |
2c653d0e | 2757 | else |
ee0ea59c HD |
2758 | node = rb_next(node); |
2759 | cond_resched(); | |
90bd6fd3 | 2760 | } |
ee0ea59c | 2761 | } |
03640418 | 2762 | list_for_each_entry_safe(stable_node, next, &migrate_nodes, list) { |
4146d2d6 HD |
2763 | if (stable_node->kpfn >= start_pfn && |
2764 | stable_node->kpfn < end_pfn) | |
2765 | remove_node_from_stable_tree(stable_node); | |
2766 | cond_resched(); | |
2767 | } | |
62b61f61 HD |
2768 | } |
2769 | ||
2770 | static int ksm_memory_callback(struct notifier_block *self, | |
2771 | unsigned long action, void *arg) | |
2772 | { | |
2773 | struct memory_notify *mn = arg; | |
62b61f61 HD |
2774 | |
2775 | switch (action) { | |
2776 | case MEM_GOING_OFFLINE: | |
2777 | /* | |
ef4d43a8 HD |
2778 | * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items() |
2779 | * and remove_all_stable_nodes() while memory is going offline: | |
2780 | * it is unsafe for them to touch the stable tree at this time. | |
2781 | * But unmerge_ksm_pages(), rmap lookups and other entry points | |
2782 | * which do not need the ksm_thread_mutex are all safe. | |
62b61f61 | 2783 | */ |
ef4d43a8 HD |
2784 | mutex_lock(&ksm_thread_mutex); |
2785 | ksm_run |= KSM_RUN_OFFLINE; | |
2786 | mutex_unlock(&ksm_thread_mutex); | |
62b61f61 HD |
2787 | break; |
2788 | ||
2789 | case MEM_OFFLINE: | |
2790 | /* | |
2791 | * Most of the work is done by page migration; but there might | |
2792 | * be a few stable_nodes left over, still pointing to struct | |
ee0ea59c HD |
2793 | * pages which have been offlined: prune those from the tree, |
2794 | * otherwise get_ksm_page() might later try to access a | |
2795 | * non-existent struct page. | |
62b61f61 | 2796 | */ |
ee0ea59c HD |
2797 | ksm_check_stable_tree(mn->start_pfn, |
2798 | mn->start_pfn + mn->nr_pages); | |
e4a9bc58 | 2799 | fallthrough; |
62b61f61 | 2800 | case MEM_CANCEL_OFFLINE: |
ef4d43a8 HD |
2801 | mutex_lock(&ksm_thread_mutex); |
2802 | ksm_run &= ~KSM_RUN_OFFLINE; | |
62b61f61 | 2803 | mutex_unlock(&ksm_thread_mutex); |
ef4d43a8 HD |
2804 | |
2805 | smp_mb(); /* wake_up_bit advises this */ | |
2806 | wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE)); | |
62b61f61 HD |
2807 | break; |
2808 | } | |
2809 | return NOTIFY_OK; | |
2810 | } | |
ef4d43a8 HD |
2811 | #else |
2812 | static void wait_while_offlining(void) | |
2813 | { | |
2814 | } | |
62b61f61 HD |
2815 | #endif /* CONFIG_MEMORY_HOTREMOVE */ |
2816 | ||
2ffd8679 HD |
2817 | #ifdef CONFIG_SYSFS |
2818 | /* | |
2819 | * This all compiles without CONFIG_SYSFS, but is a waste of space. | |
2820 | */ | |
2821 | ||
31dbd01f IE |
2822 | #define KSM_ATTR_RO(_name) \ |
2823 | static struct kobj_attribute _name##_attr = __ATTR_RO(_name) | |
2824 | #define KSM_ATTR(_name) \ | |
2825 | static struct kobj_attribute _name##_attr = \ | |
2826 | __ATTR(_name, 0644, _name##_show, _name##_store) | |
2827 | ||
2828 | static ssize_t sleep_millisecs_show(struct kobject *kobj, | |
2829 | struct kobj_attribute *attr, char *buf) | |
2830 | { | |
ae7a927d | 2831 | return sysfs_emit(buf, "%u\n", ksm_thread_sleep_millisecs); |
31dbd01f IE |
2832 | } |
2833 | ||
2834 | static ssize_t sleep_millisecs_store(struct kobject *kobj, | |
2835 | struct kobj_attribute *attr, | |
2836 | const char *buf, size_t count) | |
2837 | { | |
dfefd226 | 2838 | unsigned int msecs; |
31dbd01f IE |
2839 | int err; |
2840 | ||
dfefd226 AD |
2841 | err = kstrtouint(buf, 10, &msecs); |
2842 | if (err) | |
31dbd01f IE |
2843 | return -EINVAL; |
2844 | ||
2845 | ksm_thread_sleep_millisecs = msecs; | |
fcf9a0ef | 2846 | wake_up_interruptible(&ksm_iter_wait); |
31dbd01f IE |
2847 | |
2848 | return count; | |
2849 | } | |
2850 | KSM_ATTR(sleep_millisecs); | |
2851 | ||
2852 | static ssize_t pages_to_scan_show(struct kobject *kobj, | |
2853 | struct kobj_attribute *attr, char *buf) | |
2854 | { | |
ae7a927d | 2855 | return sysfs_emit(buf, "%u\n", ksm_thread_pages_to_scan); |
31dbd01f IE |
2856 | } |
2857 | ||
2858 | static ssize_t pages_to_scan_store(struct kobject *kobj, | |
2859 | struct kobj_attribute *attr, | |
2860 | const char *buf, size_t count) | |
2861 | { | |
dfefd226 | 2862 | unsigned int nr_pages; |
31dbd01f | 2863 | int err; |
31dbd01f | 2864 | |
dfefd226 AD |
2865 | err = kstrtouint(buf, 10, &nr_pages); |
2866 | if (err) | |
31dbd01f IE |
2867 | return -EINVAL; |
2868 | ||
2869 | ksm_thread_pages_to_scan = nr_pages; | |
2870 | ||
2871 | return count; | |
2872 | } | |
2873 | KSM_ATTR(pages_to_scan); | |
2874 | ||
2875 | static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr, | |
2876 | char *buf) | |
2877 | { | |
ae7a927d | 2878 | return sysfs_emit(buf, "%lu\n", ksm_run); |
31dbd01f IE |
2879 | } |
2880 | ||
2881 | static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr, | |
2882 | const char *buf, size_t count) | |
2883 | { | |
dfefd226 | 2884 | unsigned int flags; |
31dbd01f | 2885 | int err; |
31dbd01f | 2886 | |
dfefd226 AD |
2887 | err = kstrtouint(buf, 10, &flags); |
2888 | if (err) | |
31dbd01f IE |
2889 | return -EINVAL; |
2890 | if (flags > KSM_RUN_UNMERGE) | |
2891 | return -EINVAL; | |
2892 | ||
2893 | /* | |
2894 | * KSM_RUN_MERGE sets ksmd running, and 0 stops it running. | |
2895 | * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items, | |
d0f209f6 HD |
2896 | * breaking COW to free the pages_shared (but leaves mm_slots |
2897 | * on the list for when ksmd may be set running again). | |
31dbd01f IE |
2898 | */ |
2899 | ||
2900 | mutex_lock(&ksm_thread_mutex); | |
ef4d43a8 | 2901 | wait_while_offlining(); |
31dbd01f IE |
2902 | if (ksm_run != flags) { |
2903 | ksm_run = flags; | |
d952b791 | 2904 | if (flags & KSM_RUN_UNMERGE) { |
e1e12d2f | 2905 | set_current_oom_origin(); |
d952b791 | 2906 | err = unmerge_and_remove_all_rmap_items(); |
e1e12d2f | 2907 | clear_current_oom_origin(); |
d952b791 HD |
2908 | if (err) { |
2909 | ksm_run = KSM_RUN_STOP; | |
2910 | count = err; | |
2911 | } | |
2912 | } | |
31dbd01f IE |
2913 | } |
2914 | mutex_unlock(&ksm_thread_mutex); | |
2915 | ||
2916 | if (flags & KSM_RUN_MERGE) | |
2917 | wake_up_interruptible(&ksm_thread_wait); | |
2918 | ||
2919 | return count; | |
2920 | } | |
2921 | KSM_ATTR(run); | |
2922 | ||
90bd6fd3 PH |
2923 | #ifdef CONFIG_NUMA |
2924 | static ssize_t merge_across_nodes_show(struct kobject *kobj, | |
ae7a927d | 2925 | struct kobj_attribute *attr, char *buf) |
90bd6fd3 | 2926 | { |
ae7a927d | 2927 | return sysfs_emit(buf, "%u\n", ksm_merge_across_nodes); |
90bd6fd3 PH |
2928 | } |
2929 | ||
2930 | static ssize_t merge_across_nodes_store(struct kobject *kobj, | |
2931 | struct kobj_attribute *attr, | |
2932 | const char *buf, size_t count) | |
2933 | { | |
2934 | int err; | |
2935 | unsigned long knob; | |
2936 | ||
2937 | err = kstrtoul(buf, 10, &knob); | |
2938 | if (err) | |
2939 | return err; | |
2940 | if (knob > 1) | |
2941 | return -EINVAL; | |
2942 | ||
2943 | mutex_lock(&ksm_thread_mutex); | |
ef4d43a8 | 2944 | wait_while_offlining(); |
90bd6fd3 | 2945 | if (ksm_merge_across_nodes != knob) { |
cbf86cfe | 2946 | if (ksm_pages_shared || remove_all_stable_nodes()) |
90bd6fd3 | 2947 | err = -EBUSY; |
ef53d16c HD |
2948 | else if (root_stable_tree == one_stable_tree) { |
2949 | struct rb_root *buf; | |
2950 | /* | |
2951 | * This is the first time that we switch away from the | |
2952 | * default of merging across nodes: must now allocate | |
2953 | * a buffer to hold as many roots as may be needed. | |
2954 | * Allocate stable and unstable together: | |
2955 | * MAXSMP NODES_SHIFT 10 will use 16kB. | |
2956 | */ | |
bafe1e14 JP |
2957 | buf = kcalloc(nr_node_ids + nr_node_ids, sizeof(*buf), |
2958 | GFP_KERNEL); | |
ef53d16c HD |
2959 | /* Let us assume that RB_ROOT is NULL is zero */ |
2960 | if (!buf) | |
2961 | err = -ENOMEM; | |
2962 | else { | |
2963 | root_stable_tree = buf; | |
2964 | root_unstable_tree = buf + nr_node_ids; | |
2965 | /* Stable tree is empty but not the unstable */ | |
2966 | root_unstable_tree[0] = one_unstable_tree[0]; | |
2967 | } | |
2968 | } | |
2969 | if (!err) { | |
90bd6fd3 | 2970 | ksm_merge_across_nodes = knob; |
ef53d16c HD |
2971 | ksm_nr_node_ids = knob ? 1 : nr_node_ids; |
2972 | } | |
90bd6fd3 PH |
2973 | } |
2974 | mutex_unlock(&ksm_thread_mutex); | |
2975 | ||
2976 | return err ? err : count; | |
2977 | } | |
2978 | KSM_ATTR(merge_across_nodes); | |
2979 | #endif | |
2980 | ||
e86c59b1 | 2981 | static ssize_t use_zero_pages_show(struct kobject *kobj, |
ae7a927d | 2982 | struct kobj_attribute *attr, char *buf) |
e86c59b1 | 2983 | { |
ae7a927d | 2984 | return sysfs_emit(buf, "%u\n", ksm_use_zero_pages); |
e86c59b1 CI |
2985 | } |
2986 | static ssize_t use_zero_pages_store(struct kobject *kobj, | |
2987 | struct kobj_attribute *attr, | |
2988 | const char *buf, size_t count) | |
2989 | { | |
2990 | int err; | |
2991 | bool value; | |
2992 | ||
2993 | err = kstrtobool(buf, &value); | |
2994 | if (err) | |
2995 | return -EINVAL; | |
2996 | ||
2997 | ksm_use_zero_pages = value; | |
2998 | ||
2999 | return count; | |
3000 | } | |
3001 | KSM_ATTR(use_zero_pages); | |
3002 | ||
2c653d0e AA |
3003 | static ssize_t max_page_sharing_show(struct kobject *kobj, |
3004 | struct kobj_attribute *attr, char *buf) | |
3005 | { | |
ae7a927d | 3006 | return sysfs_emit(buf, "%u\n", ksm_max_page_sharing); |
2c653d0e AA |
3007 | } |
3008 | ||
3009 | static ssize_t max_page_sharing_store(struct kobject *kobj, | |
3010 | struct kobj_attribute *attr, | |
3011 | const char *buf, size_t count) | |
3012 | { | |
3013 | int err; | |
3014 | int knob; | |
3015 | ||
3016 | err = kstrtoint(buf, 10, &knob); | |
3017 | if (err) | |
3018 | return err; | |
3019 | /* | |
3020 | * When a KSM page is created it is shared by 2 mappings. This | |
3021 | * being a signed comparison, it implicitly verifies it's not | |
3022 | * negative. | |
3023 | */ | |
3024 | if (knob < 2) | |
3025 | return -EINVAL; | |
3026 | ||
3027 | if (READ_ONCE(ksm_max_page_sharing) == knob) | |
3028 | return count; | |
3029 | ||
3030 | mutex_lock(&ksm_thread_mutex); | |
3031 | wait_while_offlining(); | |
3032 | if (ksm_max_page_sharing != knob) { | |
3033 | if (ksm_pages_shared || remove_all_stable_nodes()) | |
3034 | err = -EBUSY; | |
3035 | else | |
3036 | ksm_max_page_sharing = knob; | |
3037 | } | |
3038 | mutex_unlock(&ksm_thread_mutex); | |
3039 | ||
3040 | return err ? err : count; | |
3041 | } | |
3042 | KSM_ATTR(max_page_sharing); | |
3043 | ||
b4028260 HD |
3044 | static ssize_t pages_shared_show(struct kobject *kobj, |
3045 | struct kobj_attribute *attr, char *buf) | |
3046 | { | |
ae7a927d | 3047 | return sysfs_emit(buf, "%lu\n", ksm_pages_shared); |
b4028260 HD |
3048 | } |
3049 | KSM_ATTR_RO(pages_shared); | |
3050 | ||
3051 | static ssize_t pages_sharing_show(struct kobject *kobj, | |
3052 | struct kobj_attribute *attr, char *buf) | |
3053 | { | |
ae7a927d | 3054 | return sysfs_emit(buf, "%lu\n", ksm_pages_sharing); |
b4028260 HD |
3055 | } |
3056 | KSM_ATTR_RO(pages_sharing); | |
3057 | ||
473b0ce4 HD |
3058 | static ssize_t pages_unshared_show(struct kobject *kobj, |
3059 | struct kobj_attribute *attr, char *buf) | |
3060 | { | |
ae7a927d | 3061 | return sysfs_emit(buf, "%lu\n", ksm_pages_unshared); |
473b0ce4 HD |
3062 | } |
3063 | KSM_ATTR_RO(pages_unshared); | |
3064 | ||
3065 | static ssize_t pages_volatile_show(struct kobject *kobj, | |
3066 | struct kobj_attribute *attr, char *buf) | |
3067 | { | |
3068 | long ksm_pages_volatile; | |
3069 | ||
3070 | ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared | |
3071 | - ksm_pages_sharing - ksm_pages_unshared; | |
3072 | /* | |
3073 | * It was not worth any locking to calculate that statistic, | |
3074 | * but it might therefore sometimes be negative: conceal that. | |
3075 | */ | |
3076 | if (ksm_pages_volatile < 0) | |
3077 | ksm_pages_volatile = 0; | |
ae7a927d | 3078 | return sysfs_emit(buf, "%ld\n", ksm_pages_volatile); |
473b0ce4 HD |
3079 | } |
3080 | KSM_ATTR_RO(pages_volatile); | |
3081 | ||
2c653d0e AA |
3082 | static ssize_t stable_node_dups_show(struct kobject *kobj, |
3083 | struct kobj_attribute *attr, char *buf) | |
3084 | { | |
ae7a927d | 3085 | return sysfs_emit(buf, "%lu\n", ksm_stable_node_dups); |
2c653d0e AA |
3086 | } |
3087 | KSM_ATTR_RO(stable_node_dups); | |
3088 | ||
3089 | static ssize_t stable_node_chains_show(struct kobject *kobj, | |
3090 | struct kobj_attribute *attr, char *buf) | |
3091 | { | |
ae7a927d | 3092 | return sysfs_emit(buf, "%lu\n", ksm_stable_node_chains); |
2c653d0e AA |
3093 | } |
3094 | KSM_ATTR_RO(stable_node_chains); | |
3095 | ||
3096 | static ssize_t | |
3097 | stable_node_chains_prune_millisecs_show(struct kobject *kobj, | |
3098 | struct kobj_attribute *attr, | |
3099 | char *buf) | |
3100 | { | |
ae7a927d | 3101 | return sysfs_emit(buf, "%u\n", ksm_stable_node_chains_prune_millisecs); |
2c653d0e AA |
3102 | } |
3103 | ||
3104 | static ssize_t | |
3105 | stable_node_chains_prune_millisecs_store(struct kobject *kobj, | |
3106 | struct kobj_attribute *attr, | |
3107 | const char *buf, size_t count) | |
3108 | { | |
3109 | unsigned long msecs; | |
3110 | int err; | |
3111 | ||
3112 | err = kstrtoul(buf, 10, &msecs); | |
3113 | if (err || msecs > UINT_MAX) | |
3114 | return -EINVAL; | |
3115 | ||
3116 | ksm_stable_node_chains_prune_millisecs = msecs; | |
3117 | ||
3118 | return count; | |
3119 | } | |
3120 | KSM_ATTR(stable_node_chains_prune_millisecs); | |
3121 | ||
473b0ce4 HD |
3122 | static ssize_t full_scans_show(struct kobject *kobj, |
3123 | struct kobj_attribute *attr, char *buf) | |
3124 | { | |
ae7a927d | 3125 | return sysfs_emit(buf, "%lu\n", ksm_scan.seqnr); |
473b0ce4 HD |
3126 | } |
3127 | KSM_ATTR_RO(full_scans); | |
3128 | ||
31dbd01f IE |
3129 | static struct attribute *ksm_attrs[] = { |
3130 | &sleep_millisecs_attr.attr, | |
3131 | &pages_to_scan_attr.attr, | |
3132 | &run_attr.attr, | |
b4028260 HD |
3133 | &pages_shared_attr.attr, |
3134 | &pages_sharing_attr.attr, | |
473b0ce4 HD |
3135 | &pages_unshared_attr.attr, |
3136 | &pages_volatile_attr.attr, | |
3137 | &full_scans_attr.attr, | |
90bd6fd3 PH |
3138 | #ifdef CONFIG_NUMA |
3139 | &merge_across_nodes_attr.attr, | |
3140 | #endif | |
2c653d0e AA |
3141 | &max_page_sharing_attr.attr, |
3142 | &stable_node_chains_attr.attr, | |
3143 | &stable_node_dups_attr.attr, | |
3144 | &stable_node_chains_prune_millisecs_attr.attr, | |
e86c59b1 | 3145 | &use_zero_pages_attr.attr, |
31dbd01f IE |
3146 | NULL, |
3147 | }; | |
3148 | ||
f907c26a | 3149 | static const struct attribute_group ksm_attr_group = { |
31dbd01f IE |
3150 | .attrs = ksm_attrs, |
3151 | .name = "ksm", | |
3152 | }; | |
2ffd8679 | 3153 | #endif /* CONFIG_SYSFS */ |
31dbd01f IE |
3154 | |
3155 | static int __init ksm_init(void) | |
3156 | { | |
3157 | struct task_struct *ksm_thread; | |
3158 | int err; | |
3159 | ||
e86c59b1 CI |
3160 | /* The correct value depends on page size and endianness */ |
3161 | zero_checksum = calc_checksum(ZERO_PAGE(0)); | |
3162 | /* Default to false for backwards compatibility */ | |
3163 | ksm_use_zero_pages = false; | |
3164 | ||
31dbd01f IE |
3165 | err = ksm_slab_init(); |
3166 | if (err) | |
3167 | goto out; | |
3168 | ||
31dbd01f IE |
3169 | ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd"); |
3170 | if (IS_ERR(ksm_thread)) { | |
25acde31 | 3171 | pr_err("ksm: creating kthread failed\n"); |
31dbd01f | 3172 | err = PTR_ERR(ksm_thread); |
d9f8984c | 3173 | goto out_free; |
31dbd01f IE |
3174 | } |
3175 | ||
2ffd8679 | 3176 | #ifdef CONFIG_SYSFS |
31dbd01f IE |
3177 | err = sysfs_create_group(mm_kobj, &ksm_attr_group); |
3178 | if (err) { | |
25acde31 | 3179 | pr_err("ksm: register sysfs failed\n"); |
2ffd8679 | 3180 | kthread_stop(ksm_thread); |
d9f8984c | 3181 | goto out_free; |
31dbd01f | 3182 | } |
c73602ad HD |
3183 | #else |
3184 | ksm_run = KSM_RUN_MERGE; /* no way for user to start it */ | |
3185 | ||
2ffd8679 | 3186 | #endif /* CONFIG_SYSFS */ |
31dbd01f | 3187 | |
62b61f61 | 3188 | #ifdef CONFIG_MEMORY_HOTREMOVE |
ef4d43a8 | 3189 | /* There is no significance to this priority 100 */ |
62b61f61 HD |
3190 | hotplug_memory_notifier(ksm_memory_callback, 100); |
3191 | #endif | |
31dbd01f IE |
3192 | return 0; |
3193 | ||
d9f8984c | 3194 | out_free: |
31dbd01f IE |
3195 | ksm_slab_free(); |
3196 | out: | |
3197 | return err; | |
f8af4da3 | 3198 | } |
a64fb3cd | 3199 | subsys_initcall(ksm_init); |