blob: 5ea0f64b8714abf651fe058ddc0b0a1333275e0d [file] [log] [blame]
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001/*
Izik Eidus31dbd012009-09-21 17:02:03 -07002 * Memory merging support.
3 *
4 * This code enables dynamic sharing of identical pages found in different
5 * memory areas, even if they are not shared by fork()
6 *
Izik Eidus36b25282009-09-21 17:02:06 -07007 * Copyright (C) 2008-2009 Red Hat, Inc.
Izik Eidus31dbd012009-09-21 17:02:03 -07008 * Authors:
9 * Izik Eidus
10 * Andrea Arcangeli
11 * Chris Wright
Izik Eidus36b25282009-09-21 17:02:06 -070012 * Hugh Dickins
Izik Eidus31dbd012009-09-21 17:02:03 -070013 *
14 * This work is licensed under the terms of the GNU GPL, version 2.
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070015 */
16
17#include <linux/errno.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070018#include <linux/mm.h>
19#include <linux/fs.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070020#include <linux/mman.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070021#include <linux/sched.h>
22#include <linux/rwsem.h>
23#include <linux/pagemap.h>
24#include <linux/rmap.h>
25#include <linux/spinlock.h>
26#include <linux/jhash.h>
27#include <linux/delay.h>
28#include <linux/kthread.h>
29#include <linux/wait.h>
30#include <linux/slab.h>
31#include <linux/rbtree.h>
Hugh Dickins62b61f62009-12-14 17:59:33 -080032#include <linux/memory.h>
Izik Eidus31dbd012009-09-21 17:02:03 -070033#include <linux/mmu_notifier.h>
Izik Eidus2c6854f2009-09-23 15:56:04 -070034#include <linux/swap.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070035#include <linux/ksm.h>
Sasha Levin4ca3a692013-02-22 16:32:28 -080036#include <linux/hashtable.h>
Andrea Arcangeli878aee72011-01-13 15:47:10 -080037#include <linux/freezer.h>
David Rientjes72788c32011-05-24 17:11:40 -070038#include <linux/oom.h>
Petr Holasek90bd6fd2013-02-22 16:35:00 -080039#include <linux/numa.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070040
Izik Eidus31dbd012009-09-21 17:02:03 -070041#include <asm/tlbflush.h>
Hugh Dickins73848b42009-12-14 17:59:22 -080042#include "internal.h"
Izik Eidus31dbd012009-09-21 17:02:03 -070043
Hugh Dickinse850dcf2013-02-22 16:35:03 -080044#ifdef CONFIG_NUMA
45#define NUMA(x) (x)
46#define DO_NUMA(x) do { (x); } while (0)
47#else
48#define NUMA(x) (0)
49#define DO_NUMA(x) do { } while (0)
50#endif
51
Izik Eidus31dbd012009-09-21 17:02:03 -070052/*
53 * A few notes about the KSM scanning process,
54 * to make it easier to understand the data structures below:
55 *
56 * In order to reduce excessive scanning, KSM sorts the memory pages by their
57 * contents into a data structure that holds pointers to the pages' locations.
58 *
59 * Since the contents of the pages may change at any moment, KSM cannot just
60 * insert the pages into a normal sorted tree and expect it to find anything.
61 * Therefore KSM uses two data structures - the stable and the unstable tree.
62 *
63 * The stable tree holds pointers to all the merged pages (ksm pages), sorted
64 * by their contents. Because each such page is write-protected, searching on
65 * this tree is fully assured to be working (except when pages are unmapped),
66 * and therefore this tree is called the stable tree.
67 *
68 * In addition to the stable tree, KSM uses a second data structure called the
69 * unstable tree: this tree holds pointers to pages which have been found to
70 * be "unchanged for a period of time". The unstable tree sorts these pages
71 * by their contents, but since they are not write-protected, KSM cannot rely
72 * upon the unstable tree to work correctly - the unstable tree is liable to
73 * be corrupted as its contents are modified, and so it is called unstable.
74 *
75 * KSM solves this problem by several techniques:
76 *
77 * 1) The unstable tree is flushed every time KSM completes scanning all
78 * memory areas, and then the tree is rebuilt again from the beginning.
79 * 2) KSM will only insert into the unstable tree, pages whose hash value
80 * has not changed since the previous scan of all memory areas.
81 * 3) The unstable tree is a RedBlack Tree - so its balancing is based on the
82 * colors of the nodes and not on their contents, assuring that even when
83 * the tree gets "corrupted" it won't get out of balance, so scanning time
84 * remains the same (also, searching and inserting nodes in an rbtree uses
85 * the same algorithm, so we have no overhead when we flush and rebuild).
86 * 4) KSM never flushes the stable tree, which means that even if it were to
87 * take 10 attempts to find a page in the unstable tree, once it is found,
88 * it is secured in the stable tree. (When we scan a new page, we first
89 * compare it against the stable tree, and then against the unstable tree.)
90 */
91
92/**
93 * struct mm_slot - ksm information per mm that is being scanned
94 * @link: link to the mm_slots hash list
95 * @mm_list: link into the mm_slots list, rooted in ksm_mm_head
Hugh Dickins6514d512009-12-14 17:59:19 -080096 * @rmap_list: head for this mm_slot's singly-linked list of rmap_items
Izik Eidus31dbd012009-09-21 17:02:03 -070097 * @mm: the mm that this information is valid for
98 */
99struct mm_slot {
100 struct hlist_node link;
101 struct list_head mm_list;
Hugh Dickins6514d512009-12-14 17:59:19 -0800102 struct rmap_item *rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700103 struct mm_struct *mm;
104};
105
106/**
107 * struct ksm_scan - cursor for scanning
108 * @mm_slot: the current mm_slot we are scanning
109 * @address: the next address inside that to be scanned
Hugh Dickins6514d512009-12-14 17:59:19 -0800110 * @rmap_list: link to the next rmap to be scanned in the rmap_list
Izik Eidus31dbd012009-09-21 17:02:03 -0700111 * @seqnr: count of completed full scans (needed when removing unstable node)
112 *
113 * There is only the one ksm_scan instance of this cursor structure.
114 */
115struct ksm_scan {
116 struct mm_slot *mm_slot;
117 unsigned long address;
Hugh Dickins6514d512009-12-14 17:59:19 -0800118 struct rmap_item **rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700119 unsigned long seqnr;
120};
121
122/**
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800123 * struct stable_node - node of the stable rbtree
124 * @node: rb node of this ksm page in the stable tree
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800125 * @head: (overlaying parent) &migrate_nodes indicates temporarily on that list
126 * @list: linked into migrate_nodes, pending placement in the proper node tree
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800127 * @hlist: hlist head of rmap_items using this ksm page
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800128 * @kpfn: page frame number of this ksm page (perhaps temporarily on wrong nid)
129 * @nid: NUMA node id of stable tree in which linked (may not match kpfn)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800130 */
131struct stable_node {
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800132 union {
133 struct rb_node node; /* when node of stable tree */
134 struct { /* when listed for migration */
135 struct list_head *head;
136 struct list_head list;
137 };
138 };
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800139 struct hlist_head hlist;
Hugh Dickins62b61f62009-12-14 17:59:33 -0800140 unsigned long kpfn;
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800141#ifdef CONFIG_NUMA
142 int nid;
143#endif
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800144};
145
146/**
Izik Eidus31dbd012009-09-21 17:02:03 -0700147 * struct rmap_item - reverse mapping item for virtual addresses
Hugh Dickins6514d512009-12-14 17:59:19 -0800148 * @rmap_list: next rmap_item in mm_slot's singly-linked rmap_list
Hugh Dickinsdb114b82009-12-14 17:59:25 -0800149 * @anon_vma: pointer to anon_vma for this mm,address, when in stable tree
Izik Eidus31dbd012009-09-21 17:02:03 -0700150 * @mm: the memory structure this rmap_item is pointing into
151 * @address: the virtual address this rmap_item tracks (+ flags in low bits)
152 * @oldchecksum: previous checksum of the page at that virtual address
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800153 * @nid: NUMA node id of unstable tree in which linked (may not match page)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800154 * @node: rb node of this rmap_item in the unstable tree
155 * @head: pointer to stable_node heading this list in the stable tree
156 * @hlist: link into hlist of rmap_items hanging off that stable_node
Izik Eidus31dbd012009-09-21 17:02:03 -0700157 */
158struct rmap_item {
Hugh Dickins6514d512009-12-14 17:59:19 -0800159 struct rmap_item *rmap_list;
Hugh Dickinsdb114b82009-12-14 17:59:25 -0800160 struct anon_vma *anon_vma; /* when stable */
Izik Eidus31dbd012009-09-21 17:02:03 -0700161 struct mm_struct *mm;
162 unsigned long address; /* + low bits used for flags below */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800163 unsigned int oldchecksum; /* when unstable */
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800164#ifdef CONFIG_NUMA
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800165 int nid;
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800166#endif
Izik Eidus31dbd012009-09-21 17:02:03 -0700167 union {
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800168 struct rb_node node; /* when node of unstable tree */
169 struct { /* when listed from stable tree */
170 struct stable_node *head;
171 struct hlist_node hlist;
172 };
Izik Eidus31dbd012009-09-21 17:02:03 -0700173 };
174};
175
176#define SEQNR_MASK 0x0ff /* low bits of unstable tree seqnr */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800177#define UNSTABLE_FLAG 0x100 /* is a node of the unstable tree */
178#define STABLE_FLAG 0x200 /* is listed from the stable tree */
Izik Eidus31dbd012009-09-21 17:02:03 -0700179
180/* The stable and unstable tree heads */
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800181static struct rb_root root_unstable_tree[MAX_NUMNODES];
182static struct rb_root root_stable_tree[MAX_NUMNODES];
Izik Eidus31dbd012009-09-21 17:02:03 -0700183
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800184/* Recently migrated nodes of stable tree, pending proper placement */
185static LIST_HEAD(migrate_nodes);
186
Sasha Levin4ca3a692013-02-22 16:32:28 -0800187#define MM_SLOTS_HASH_BITS 10
188static DEFINE_HASHTABLE(mm_slots_hash, MM_SLOTS_HASH_BITS);
Izik Eidus31dbd012009-09-21 17:02:03 -0700189
190static struct mm_slot ksm_mm_head = {
191 .mm_list = LIST_HEAD_INIT(ksm_mm_head.mm_list),
192};
193static struct ksm_scan ksm_scan = {
194 .mm_slot = &ksm_mm_head,
195};
196
197static struct kmem_cache *rmap_item_cache;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800198static struct kmem_cache *stable_node_cache;
Izik Eidus31dbd012009-09-21 17:02:03 -0700199static struct kmem_cache *mm_slot_cache;
200
201/* The number of nodes in the stable tree */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700202static unsigned long ksm_pages_shared;
Izik Eidus31dbd012009-09-21 17:02:03 -0700203
Hugh Dickinse178dfd2009-09-21 17:02:10 -0700204/* The number of page slots additionally sharing those nodes */
Hugh Dickinsb4028262009-09-21 17:02:09 -0700205static unsigned long ksm_pages_sharing;
Izik Eidus31dbd012009-09-21 17:02:03 -0700206
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700207/* The number of nodes in the unstable tree */
208static unsigned long ksm_pages_unshared;
209
210/* The number of rmap_items in use: to calculate pages_volatile */
211static unsigned long ksm_rmap_items;
212
Izik Eidus31dbd012009-09-21 17:02:03 -0700213/* Number of pages ksmd should scan in one batch */
Izik Eidus2c6854f2009-09-23 15:56:04 -0700214static unsigned int ksm_thread_pages_to_scan = 100;
Izik Eidus31dbd012009-09-21 17:02:03 -0700215
216/* Milliseconds ksmd should sleep between batches */
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700217static unsigned int ksm_thread_sleep_millisecs = 20;
Izik Eidus31dbd012009-09-21 17:02:03 -0700218
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800219#ifdef CONFIG_NUMA
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800220/* Zeroed when merging across nodes is not allowed */
221static unsigned int ksm_merge_across_nodes = 1;
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800222#else
223#define ksm_merge_across_nodes 1U
224#endif
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800225
Izik Eidus31dbd012009-09-21 17:02:03 -0700226#define KSM_RUN_STOP 0
227#define KSM_RUN_MERGE 1
228#define KSM_RUN_UNMERGE 2
Hugh Dickinsef4d43a2013-02-22 16:35:16 -0800229#define KSM_RUN_OFFLINE 4
230static unsigned long ksm_run = KSM_RUN_STOP;
231static void wait_while_offlining(void);
Izik Eidus31dbd012009-09-21 17:02:03 -0700232
233static DECLARE_WAIT_QUEUE_HEAD(ksm_thread_wait);
234static DEFINE_MUTEX(ksm_thread_mutex);
235static DEFINE_SPINLOCK(ksm_mmlist_lock);
236
237#define KSM_KMEM_CACHE(__struct, __flags) kmem_cache_create("ksm_"#__struct,\
238 sizeof(struct __struct), __alignof__(struct __struct),\
239 (__flags), NULL)
240
241static int __init ksm_slab_init(void)
242{
243 rmap_item_cache = KSM_KMEM_CACHE(rmap_item, 0);
244 if (!rmap_item_cache)
245 goto out;
246
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800247 stable_node_cache = KSM_KMEM_CACHE(stable_node, 0);
248 if (!stable_node_cache)
249 goto out_free1;
250
Izik Eidus31dbd012009-09-21 17:02:03 -0700251 mm_slot_cache = KSM_KMEM_CACHE(mm_slot, 0);
252 if (!mm_slot_cache)
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800253 goto out_free2;
Izik Eidus31dbd012009-09-21 17:02:03 -0700254
255 return 0;
256
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800257out_free2:
258 kmem_cache_destroy(stable_node_cache);
259out_free1:
Izik Eidus31dbd012009-09-21 17:02:03 -0700260 kmem_cache_destroy(rmap_item_cache);
261out:
262 return -ENOMEM;
263}
264
265static void __init ksm_slab_free(void)
266{
267 kmem_cache_destroy(mm_slot_cache);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800268 kmem_cache_destroy(stable_node_cache);
Izik Eidus31dbd012009-09-21 17:02:03 -0700269 kmem_cache_destroy(rmap_item_cache);
270 mm_slot_cache = NULL;
271}
272
273static inline struct rmap_item *alloc_rmap_item(void)
274{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700275 struct rmap_item *rmap_item;
276
277 rmap_item = kmem_cache_zalloc(rmap_item_cache, GFP_KERNEL);
278 if (rmap_item)
279 ksm_rmap_items++;
280 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -0700281}
282
283static inline void free_rmap_item(struct rmap_item *rmap_item)
284{
Hugh Dickins473b0ce2009-09-21 17:02:11 -0700285 ksm_rmap_items--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700286 rmap_item->mm = NULL; /* debug safety */
287 kmem_cache_free(rmap_item_cache, rmap_item);
288}
289
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800290static inline struct stable_node *alloc_stable_node(void)
291{
292 return kmem_cache_alloc(stable_node_cache, GFP_KERNEL);
293}
294
295static inline void free_stable_node(struct stable_node *stable_node)
296{
297 kmem_cache_free(stable_node_cache, stable_node);
298}
299
Izik Eidus31dbd012009-09-21 17:02:03 -0700300static inline struct mm_slot *alloc_mm_slot(void)
301{
302 if (!mm_slot_cache) /* initialization failed */
303 return NULL;
304 return kmem_cache_zalloc(mm_slot_cache, GFP_KERNEL);
305}
306
307static inline void free_mm_slot(struct mm_slot *mm_slot)
308{
309 kmem_cache_free(mm_slot_cache, mm_slot);
310}
311
Izik Eidus31dbd012009-09-21 17:02:03 -0700312static struct mm_slot *get_mm_slot(struct mm_struct *mm)
313{
Izik Eidus31dbd012009-09-21 17:02:03 -0700314 struct hlist_node *node;
Sasha Levin4ca3a692013-02-22 16:32:28 -0800315 struct mm_slot *slot;
Izik Eidus31dbd012009-09-21 17:02:03 -0700316
Sasha Levin4ca3a692013-02-22 16:32:28 -0800317 hash_for_each_possible(mm_slots_hash, slot, node, link, (unsigned long)mm)
318 if (slot->mm == mm)
319 return slot;
320
Izik Eidus31dbd012009-09-21 17:02:03 -0700321 return NULL;
322}
323
324static void insert_to_mm_slots_hash(struct mm_struct *mm,
325 struct mm_slot *mm_slot)
326{
Izik Eidus31dbd012009-09-21 17:02:03 -0700327 mm_slot->mm = mm;
Sasha Levin4ca3a692013-02-22 16:32:28 -0800328 hash_add(mm_slots_hash, &mm_slot->link, (unsigned long)mm);
Izik Eidus31dbd012009-09-21 17:02:03 -0700329}
330
Izik Eidus31dbd012009-09-21 17:02:03 -0700331/*
Hugh Dickinsa913e182009-09-21 17:02:26 -0700332 * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's
333 * page tables after it has passed through ksm_exit() - which, if necessary,
334 * takes mmap_sem briefly to serialize against them. ksm_exit() does not set
335 * a special flag: they can just back out as soon as mm_users goes to zero.
336 * ksm_test_exit() is used throughout to make this test for exit: in some
337 * places for correctness, in some places just to avoid unnecessary work.
338 */
339static inline bool ksm_test_exit(struct mm_struct *mm)
340{
341 return atomic_read(&mm->mm_users) == 0;
342}
343
344/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700345 * We use break_ksm to break COW on a ksm page: it's a stripped down
346 *
347 * if (get_user_pages(current, mm, addr, 1, 1, 1, &page, NULL) == 1)
348 * put_page(page);
349 *
350 * but taking great care only to touch a ksm page, in a VM_MERGEABLE vma,
351 * in case the application has unmapped and remapped mm,addr meanwhile.
352 * Could a ksm page appear anywhere else? Actually yes, in a VM_PFNMAP
353 * mmap of /dev/mem or /dev/kmem, where we would not want to touch it.
354 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700355static int break_ksm(struct vm_area_struct *vma, unsigned long addr)
Izik Eidus31dbd012009-09-21 17:02:03 -0700356{
357 struct page *page;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700358 int ret = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700359
360 do {
361 cond_resched();
362 page = follow_page(vma, addr, FOLL_GET);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400363 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700364 break;
365 if (PageKsm(page))
366 ret = handle_mm_fault(vma->vm_mm, vma, addr,
367 FAULT_FLAG_WRITE);
368 else
369 ret = VM_FAULT_WRITE;
370 put_page(page);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700371 } while (!(ret & (VM_FAULT_WRITE | VM_FAULT_SIGBUS | VM_FAULT_OOM)));
372 /*
373 * We must loop because handle_mm_fault() may back out if there's
374 * any difficulty e.g. if pte accessed bit gets updated concurrently.
375 *
376 * VM_FAULT_WRITE is what we have been hoping for: it indicates that
377 * COW has been broken, even if the vma does not permit VM_WRITE;
378 * but note that a concurrent fault might break PageKsm for us.
379 *
380 * VM_FAULT_SIGBUS could occur if we race with truncation of the
381 * backing file, which also invalidates anonymous pages: that's
382 * okay, that truncation will have unmapped the PageKsm for us.
383 *
384 * VM_FAULT_OOM: at the time of writing (late July 2009), setting
385 * aside mem_cgroup limits, VM_FAULT_OOM would only be set if the
386 * current task has TIF_MEMDIE set, and will be OOM killed on return
387 * to user; and ksmd, having no mm, would never be chosen for that.
388 *
389 * But if the mm is in a limited mem_cgroup, then the fault may fail
390 * with VM_FAULT_OOM even if the current task is not TIF_MEMDIE; and
391 * even ksmd can fail in this way - though it's usually breaking ksm
392 * just to undo a merge it made a moment before, so unlikely to oom.
393 *
394 * That's a pity: we might therefore have more kernel pages allocated
395 * than we're counting as nodes in the stable tree; but ksm_do_scan
396 * will retry to break_cow on each pass, so should recover the page
397 * in due course. The important thing is to not let VM_MERGEABLE
398 * be cleared while any such pages might remain in the area.
399 */
400 return (ret & VM_FAULT_OOM) ? -ENOMEM : 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700401}
402
Bob Liuef694222012-03-21 16:34:11 -0700403static struct vm_area_struct *find_mergeable_vma(struct mm_struct *mm,
404 unsigned long addr)
405{
406 struct vm_area_struct *vma;
407 if (ksm_test_exit(mm))
408 return NULL;
409 vma = find_vma(mm, addr);
410 if (!vma || vma->vm_start > addr)
411 return NULL;
412 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
413 return NULL;
414 return vma;
415}
416
Hugh Dickins8dd35572009-12-14 17:59:18 -0800417static void break_cow(struct rmap_item *rmap_item)
Izik Eidus31dbd012009-09-21 17:02:03 -0700418{
Hugh Dickins8dd35572009-12-14 17:59:18 -0800419 struct mm_struct *mm = rmap_item->mm;
420 unsigned long addr = rmap_item->address;
Izik Eidus31dbd012009-09-21 17:02:03 -0700421 struct vm_area_struct *vma;
422
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800423 /*
424 * It is not an accident that whenever we want to break COW
425 * to undo, we also need to drop a reference to the anon_vma.
426 */
Peter Zijlstra9e601092011-03-22 16:32:46 -0700427 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800428
Hugh Dickins81464e302009-09-21 17:02:15 -0700429 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700430 vma = find_mergeable_vma(mm, addr);
431 if (vma)
432 break_ksm(vma, addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700433 up_read(&mm->mmap_sem);
434}
435
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800436static struct page *page_trans_compound_anon(struct page *page)
437{
438 if (PageTransCompound(page)) {
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800439 struct page *head = compound_trans_head(page);
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800440 /*
Andrea Arcangeli22e5c472011-01-13 15:47:20 -0800441 * head may actually be splitted and freed from under
442 * us but it's ok here.
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800443 */
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800444 if (PageAnon(head))
445 return head;
446 }
447 return NULL;
448}
449
Izik Eidus31dbd012009-09-21 17:02:03 -0700450static struct page *get_mergeable_page(struct rmap_item *rmap_item)
451{
452 struct mm_struct *mm = rmap_item->mm;
453 unsigned long addr = rmap_item->address;
454 struct vm_area_struct *vma;
455 struct page *page;
456
457 down_read(&mm->mmap_sem);
Bob Liuef694222012-03-21 16:34:11 -0700458 vma = find_mergeable_vma(mm, addr);
459 if (!vma)
Izik Eidus31dbd012009-09-21 17:02:03 -0700460 goto out;
461
462 page = follow_page(vma, addr, FOLL_GET);
Dan Carpenter22eccdd2010-04-23 13:18:10 -0400463 if (IS_ERR_OR_NULL(page))
Izik Eidus31dbd012009-09-21 17:02:03 -0700464 goto out;
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800465 if (PageAnon(page) || page_trans_compound_anon(page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700466 flush_anon_page(vma, page, addr);
467 flush_dcache_page(page);
468 } else {
469 put_page(page);
470out: page = NULL;
471 }
472 up_read(&mm->mmap_sem);
473 return page;
474}
475
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800476/*
477 * This helper is used for getting right index into array of tree roots.
478 * When merge_across_nodes knob is set to 1, there are only two rb-trees for
479 * stable and unstable pages from all nodes with roots in index 0. Otherwise,
480 * every node has its own stable and unstable tree.
481 */
482static inline int get_kpfn_nid(unsigned long kpfn)
483{
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800484 return ksm_merge_across_nodes ? 0 : pfn_to_nid(kpfn);
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800485}
486
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800487static void remove_node_from_stable_tree(struct stable_node *stable_node)
488{
489 struct rmap_item *rmap_item;
490 struct hlist_node *hlist;
491
492 hlist_for_each_entry(rmap_item, hlist, &stable_node->hlist, hlist) {
493 if (rmap_item->hlist.next)
494 ksm_pages_sharing--;
495 else
496 ksm_pages_shared--;
Peter Zijlstra9e601092011-03-22 16:32:46 -0700497 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800498 rmap_item->address &= PAGE_MASK;
499 cond_resched();
500 }
501
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800502 if (stable_node->head == &migrate_nodes)
503 list_del(&stable_node->list);
504 else
505 rb_erase(&stable_node->node,
506 &root_stable_tree[NUMA(stable_node->nid)]);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800507 free_stable_node(stable_node);
508}
509
510/*
511 * get_ksm_page: checks if the page indicated by the stable node
512 * is still its ksm page, despite having held no reference to it.
513 * In which case we can trust the content of the page, and it
514 * returns the gotten page; but if the page has now been zapped,
515 * remove the stale node from the stable tree and return NULL.
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800516 * But beware, the stable node's page might be being migrated.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800517 *
518 * You would expect the stable_node to hold a reference to the ksm page.
519 * But if it increments the page's count, swapping out has to wait for
520 * ksmd to come around again before it can free the page, which may take
521 * seconds or even minutes: much too unresponsive. So instead we use a
522 * "keyhole reference": access to the ksm page from the stable node peeps
523 * out through its keyhole to see if that page still holds the right key,
524 * pointing back to this stable node. This relies on freeing a PageAnon
525 * page to reset its page->mapping to NULL, and relies on no other use of
526 * a page to put something that might look like our key in page->mapping.
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800527 * is on its way to being freed; but it is an anomaly to bear in mind.
528 */
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800529static struct page *get_ksm_page(struct stable_node *stable_node, bool locked)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800530{
531 struct page *page;
532 void *expected_mapping;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800533 unsigned long kpfn;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800534
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800535 expected_mapping = (void *)stable_node +
536 (PAGE_MAPPING_ANON | PAGE_MAPPING_KSM);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800537again:
538 kpfn = ACCESS_ONCE(stable_node->kpfn);
539 page = pfn_to_page(kpfn);
540
541 /*
542 * page is computed from kpfn, so on most architectures reading
543 * page->mapping is naturally ordered after reading node->kpfn,
544 * but on Alpha we need to be more careful.
545 */
546 smp_read_barrier_depends();
547 if (ACCESS_ONCE(page->mapping) != expected_mapping)
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800548 goto stale;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800549
550 /*
551 * We cannot do anything with the page while its refcount is 0.
552 * Usually 0 means free, or tail of a higher-order page: in which
553 * case this node is no longer referenced, and should be freed;
554 * however, it might mean that the page is under page_freeze_refs().
555 * The __remove_mapping() case is easy, again the node is now stale;
556 * but if page is swapcache in migrate_page_move_mapping(), it might
557 * still be our page, in which case it's essential to keep the node.
558 */
559 while (!get_page_unless_zero(page)) {
560 /*
561 * Another check for page->mapping != expected_mapping would
562 * work here too. We have chosen the !PageSwapCache test to
563 * optimize the common case, when the page is or is about to
564 * be freed: PageSwapCache is cleared (under spin_lock_irq)
565 * in the freeze_refs section of __remove_mapping(); but Anon
566 * page->mapping reset to NULL later, in free_pages_prepare().
567 */
568 if (!PageSwapCache(page))
569 goto stale;
570 cpu_relax();
571 }
572
573 if (ACCESS_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800574 put_page(page);
575 goto stale;
576 }
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800577
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800578 if (locked) {
579 lock_page(page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800580 if (ACCESS_ONCE(page->mapping) != expected_mapping) {
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800581 unlock_page(page);
582 put_page(page);
583 goto stale;
584 }
585 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800586 return page;
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800587
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800588stale:
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800589 /*
590 * We come here from above when page->mapping or !PageSwapCache
591 * suggests that the node is stale; but it might be under migration.
592 * We need smp_rmb(), matching the smp_wmb() in ksm_migrate_page(),
593 * before checking whether node->kpfn has been changed.
594 */
595 smp_rmb();
596 if (ACCESS_ONCE(stable_node->kpfn) != kpfn)
597 goto again;
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800598 remove_node_from_stable_tree(stable_node);
599 return NULL;
600}
601
Izik Eidus31dbd012009-09-21 17:02:03 -0700602/*
Izik Eidus31dbd012009-09-21 17:02:03 -0700603 * Removing rmap_item from stable or unstable tree.
604 * This function will clean the information from the stable/unstable tree.
605 */
606static void remove_rmap_item_from_tree(struct rmap_item *rmap_item)
607{
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800608 if (rmap_item->address & STABLE_FLAG) {
609 struct stable_node *stable_node;
Hugh Dickins5ad64682009-12-14 17:59:24 -0800610 struct page *page;
Izik Eidus31dbd012009-09-21 17:02:03 -0700611
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800612 stable_node = rmap_item->head;
Hugh Dickins8aafa6a2013-02-22 16:35:06 -0800613 page = get_ksm_page(stable_node, true);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800614 if (!page)
615 goto out;
616
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800617 hlist_del(&rmap_item->hlist);
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800618 unlock_page(page);
619 put_page(page);
Hugh Dickins08beca42009-12-14 17:59:21 -0800620
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800621 if (stable_node->hlist.first)
622 ksm_pages_sharing--;
623 else
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800624 ksm_pages_shared--;
Izik Eidus31dbd012009-09-21 17:02:03 -0700625
Peter Zijlstra9e601092011-03-22 16:32:46 -0700626 put_anon_vma(rmap_item->anon_vma);
Hugh Dickins93d17712009-12-14 17:59:16 -0800627 rmap_item->address &= PAGE_MASK;
Izik Eidus31dbd012009-09-21 17:02:03 -0700628
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -0800629 } else if (rmap_item->address & UNSTABLE_FLAG) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700630 unsigned char age;
631 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -0700632 * Usually ksmd can and must skip the rb_erase, because
Izik Eidus31dbd012009-09-21 17:02:03 -0700633 * root_unstable_tree was already reset to RB_ROOT.
Hugh Dickins9ba69292009-09-21 17:02:20 -0700634 * But be careful when an mm is exiting: do the rb_erase
635 * if this rmap_item was inserted by this scan, rather
636 * than left over from before.
Izik Eidus31dbd012009-09-21 17:02:03 -0700637 */
638 age = (unsigned char)(ksm_scan.seqnr - rmap_item->address);
Hugh Dickinscd551f92009-09-21 17:02:17 -0700639 BUG_ON(age > 1);
Izik Eidus31dbd012009-09-21 17:02:03 -0700640 if (!age)
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800641 rb_erase(&rmap_item->node,
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800642 &root_unstable_tree[NUMA(rmap_item->nid)]);
Hugh Dickins93d17712009-12-14 17:59:16 -0800643 ksm_pages_unshared--;
644 rmap_item->address &= PAGE_MASK;
645 }
Hugh Dickins4035c07a2009-12-14 17:59:27 -0800646out:
Izik Eidus31dbd012009-09-21 17:02:03 -0700647 cond_resched(); /* we're called from many long loops */
648}
649
Izik Eidus31dbd012009-09-21 17:02:03 -0700650static void remove_trailing_rmap_items(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -0800651 struct rmap_item **rmap_list)
Izik Eidus31dbd012009-09-21 17:02:03 -0700652{
Hugh Dickins6514d512009-12-14 17:59:19 -0800653 while (*rmap_list) {
654 struct rmap_item *rmap_item = *rmap_list;
655 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -0700656 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -0700657 free_rmap_item(rmap_item);
658 }
659}
660
661/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -0800662 * Though it's very tempting to unmerge rmap_items from stable tree rather
Izik Eidus31dbd012009-09-21 17:02:03 -0700663 * than check every pte of a given vma, the locking doesn't quite work for
664 * that - an rmap_item is assigned to the stable tree after inserting ksm
665 * page and upping mmap_sem. Nor does it fit with the way we skip dup'ing
666 * rmap_items from parent to child at fork time (so as not to waste time
667 * if exit comes before the next scan reaches it).
Hugh Dickins81464e302009-09-21 17:02:15 -0700668 *
669 * Similarly, although we'd like to remove rmap_items (so updating counts
670 * and freeing memory) when unmerging an area, it's easier to leave that
671 * to the next pass of ksmd - consider, for example, how ksmd might be
672 * in cmp_and_merge_page on one of the rmap_items we would be removing.
Izik Eidus31dbd012009-09-21 17:02:03 -0700673 */
Hugh Dickinsd952b792009-09-21 17:02:16 -0700674static int unmerge_ksm_pages(struct vm_area_struct *vma,
675 unsigned long start, unsigned long end)
Izik Eidus31dbd012009-09-21 17:02:03 -0700676{
677 unsigned long addr;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700678 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700679
Hugh Dickinsd952b792009-09-21 17:02:16 -0700680 for (addr = start; addr < end && !err; addr += PAGE_SIZE) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700681 if (ksm_test_exit(vma->vm_mm))
682 break;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700683 if (signal_pending(current))
684 err = -ERESTARTSYS;
685 else
686 err = break_ksm(vma, addr);
687 }
688 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700689}
690
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700691#ifdef CONFIG_SYSFS
692/*
693 * Only called through the sysfs control interface:
694 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800695static int remove_stable_node(struct stable_node *stable_node)
696{
697 struct page *page;
698 int err;
699
700 page = get_ksm_page(stable_node, true);
701 if (!page) {
702 /*
703 * get_ksm_page did remove_node_from_stable_tree itself.
704 */
705 return 0;
706 }
707
708 if (WARN_ON_ONCE(page_mapped(page)))
709 err = -EBUSY;
710 else {
711 /*
712 * This page might be in a pagevec waiting to be freed,
713 * or it might be PageSwapCache (perhaps under writeback),
714 * or it might have been removed from swapcache a moment ago.
715 */
716 set_page_stable_node(page, NULL);
717 remove_node_from_stable_tree(stable_node);
718 err = 0;
719 }
720
721 unlock_page(page);
722 put_page(page);
723 return err;
724}
725
726static int remove_all_stable_nodes(void)
727{
728 struct stable_node *stable_node;
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800729 struct list_head *this, *next;
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800730 int nid;
731 int err = 0;
732
733 for (nid = 0; nid < nr_node_ids; nid++) {
734 while (root_stable_tree[nid].rb_node) {
735 stable_node = rb_entry(root_stable_tree[nid].rb_node,
736 struct stable_node, node);
737 if (remove_stable_node(stable_node)) {
738 err = -EBUSY;
739 break; /* proceed to next nid */
740 }
741 cond_resched();
742 }
743 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -0800744 list_for_each_safe(this, next, &migrate_nodes) {
745 stable_node = list_entry(this, struct stable_node, list);
746 if (remove_stable_node(stable_node))
747 err = -EBUSY;
748 cond_resched();
749 }
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800750 return err;
751}
752
Hugh Dickinsd952b792009-09-21 17:02:16 -0700753static int unmerge_and_remove_all_rmap_items(void)
Izik Eidus31dbd012009-09-21 17:02:03 -0700754{
755 struct mm_slot *mm_slot;
756 struct mm_struct *mm;
757 struct vm_area_struct *vma;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700758 int err = 0;
Izik Eidus31dbd012009-09-21 17:02:03 -0700759
Hugh Dickinsd952b792009-09-21 17:02:16 -0700760 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700761 ksm_scan.mm_slot = list_entry(ksm_mm_head.mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700762 struct mm_slot, mm_list);
763 spin_unlock(&ksm_mmlist_lock);
764
Hugh Dickins9ba69292009-09-21 17:02:20 -0700765 for (mm_slot = ksm_scan.mm_slot;
766 mm_slot != &ksm_mm_head; mm_slot = ksm_scan.mm_slot) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700767 mm = mm_slot->mm;
768 down_read(&mm->mmap_sem);
769 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Hugh Dickins9ba69292009-09-21 17:02:20 -0700770 if (ksm_test_exit(mm))
771 break;
Izik Eidus31dbd012009-09-21 17:02:03 -0700772 if (!(vma->vm_flags & VM_MERGEABLE) || !vma->anon_vma)
773 continue;
Hugh Dickinsd952b792009-09-21 17:02:16 -0700774 err = unmerge_ksm_pages(vma,
775 vma->vm_start, vma->vm_end);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700776 if (err)
777 goto error;
Izik Eidus31dbd012009-09-21 17:02:03 -0700778 }
Hugh Dickins9ba69292009-09-21 17:02:20 -0700779
Hugh Dickins6514d512009-12-14 17:59:19 -0800780 remove_trailing_rmap_items(mm_slot, &mm_slot->rmap_list);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700781
782 spin_lock(&ksm_mmlist_lock);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700783 ksm_scan.mm_slot = list_entry(mm_slot->mm_list.next,
Hugh Dickinsd952b792009-09-21 17:02:16 -0700784 struct mm_slot, mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700785 if (ksm_test_exit(mm)) {
Sasha Levin4ca3a692013-02-22 16:32:28 -0800786 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -0700787 list_del(&mm_slot->mm_list);
788 spin_unlock(&ksm_mmlist_lock);
789
790 free_mm_slot(mm_slot);
791 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
792 up_read(&mm->mmap_sem);
793 mmdrop(mm);
794 } else {
795 spin_unlock(&ksm_mmlist_lock);
796 up_read(&mm->mmap_sem);
797 }
Izik Eidus31dbd012009-09-21 17:02:03 -0700798 }
799
Hugh Dickinscbf86cf2013-02-22 16:35:08 -0800800 /* Clean up stable nodes, but don't worry if some are still busy */
801 remove_all_stable_nodes();
Hugh Dickinsd952b792009-09-21 17:02:16 -0700802 ksm_scan.seqnr = 0;
Hugh Dickins9ba69292009-09-21 17:02:20 -0700803 return 0;
804
805error:
806 up_read(&mm->mmap_sem);
Izik Eidus31dbd012009-09-21 17:02:03 -0700807 spin_lock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700808 ksm_scan.mm_slot = &ksm_mm_head;
Izik Eidus31dbd012009-09-21 17:02:03 -0700809 spin_unlock(&ksm_mmlist_lock);
Hugh Dickinsd952b792009-09-21 17:02:16 -0700810 return err;
Izik Eidus31dbd012009-09-21 17:02:03 -0700811}
Hugh Dickins2ffd8672009-09-21 17:02:23 -0700812#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -0700813
Izik Eidus31dbd012009-09-21 17:02:03 -0700814static u32 calc_checksum(struct page *page)
815{
816 u32 checksum;
Cong Wang9b04c5f2011-11-25 23:14:39 +0800817 void *addr = kmap_atomic(page);
Izik Eidus31dbd012009-09-21 17:02:03 -0700818 checksum = jhash2(addr, PAGE_SIZE / 4, 17);
Cong Wang9b04c5f2011-11-25 23:14:39 +0800819 kunmap_atomic(addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700820 return checksum;
821}
822
823static int memcmp_pages(struct page *page1, struct page *page2)
824{
825 char *addr1, *addr2;
826 int ret;
827
Cong Wang9b04c5f2011-11-25 23:14:39 +0800828 addr1 = kmap_atomic(page1);
829 addr2 = kmap_atomic(page2);
Izik Eidus31dbd012009-09-21 17:02:03 -0700830 ret = memcmp(addr1, addr2, PAGE_SIZE);
Cong Wang9b04c5f2011-11-25 23:14:39 +0800831 kunmap_atomic(addr2);
832 kunmap_atomic(addr1);
Izik Eidus31dbd012009-09-21 17:02:03 -0700833 return ret;
834}
835
836static inline int pages_identical(struct page *page1, struct page *page2)
837{
838 return !memcmp_pages(page1, page2);
839}
840
841static int write_protect_page(struct vm_area_struct *vma, struct page *page,
842 pte_t *orig_pte)
843{
844 struct mm_struct *mm = vma->vm_mm;
845 unsigned long addr;
846 pte_t *ptep;
847 spinlock_t *ptl;
848 int swapped;
849 int err = -EFAULT;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700850 unsigned long mmun_start; /* For mmu_notifiers */
851 unsigned long mmun_end; /* For mmu_notifiers */
Izik Eidus31dbd012009-09-21 17:02:03 -0700852
853 addr = page_address_in_vma(page, vma);
854 if (addr == -EFAULT)
855 goto out;
856
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800857 BUG_ON(PageTransCompound(page));
Haggai Eran6bdb9132012-10-08 16:33:35 -0700858
859 mmun_start = addr;
860 mmun_end = addr + PAGE_SIZE;
861 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
862
Izik Eidus31dbd012009-09-21 17:02:03 -0700863 ptep = page_check_address(page, mm, addr, &ptl, 0);
864 if (!ptep)
Haggai Eran6bdb9132012-10-08 16:33:35 -0700865 goto out_mn;
Izik Eidus31dbd012009-09-21 17:02:03 -0700866
Hugh Dickins4e316352010-10-02 17:49:08 -0700867 if (pte_write(*ptep) || pte_dirty(*ptep)) {
Izik Eidus31dbd012009-09-21 17:02:03 -0700868 pte_t entry;
869
870 swapped = PageSwapCache(page);
871 flush_cache_page(vma, addr, page_to_pfn(page));
872 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300873 * Ok this is tricky, when get_user_pages_fast() run it doesn't
Izik Eidus31dbd012009-09-21 17:02:03 -0700874 * take any lock, therefore the check that we are going to make
875 * with the pagecount against the mapcount is racey and
876 * O_DIRECT can happen right after the check.
877 * So we clear the pte and flush the tlb before the check
878 * this assure us that no O_DIRECT can happen after the check
879 * or in the middle of the check.
880 */
881 entry = ptep_clear_flush(vma, addr, ptep);
882 /*
883 * Check that no O_DIRECT or similar I/O is in progress on the
884 * page
885 */
Hugh Dickins31e855e2009-12-14 17:59:17 -0800886 if (page_mapcount(page) + 1 + swapped != page_count(page)) {
Robin Holtcb532372010-03-23 13:35:26 -0700887 set_pte_at(mm, addr, ptep, entry);
Izik Eidus31dbd012009-09-21 17:02:03 -0700888 goto out_unlock;
889 }
Hugh Dickins4e316352010-10-02 17:49:08 -0700890 if (pte_dirty(entry))
891 set_page_dirty(page);
892 entry = pte_mkclean(pte_wrprotect(entry));
Izik Eidus31dbd012009-09-21 17:02:03 -0700893 set_pte_at_notify(mm, addr, ptep, entry);
894 }
895 *orig_pte = *ptep;
896 err = 0;
897
898out_unlock:
899 pte_unmap_unlock(ptep, ptl);
Haggai Eran6bdb9132012-10-08 16:33:35 -0700900out_mn:
901 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Izik Eidus31dbd012009-09-21 17:02:03 -0700902out:
903 return err;
904}
905
906/**
907 * replace_page - replace page in vma by new ksm page
Hugh Dickins8dd35572009-12-14 17:59:18 -0800908 * @vma: vma that holds the pte pointing to page
909 * @page: the page we are replacing by kpage
910 * @kpage: the ksm page we replace page by
Izik Eidus31dbd012009-09-21 17:02:03 -0700911 * @orig_pte: the original value of the pte
912 *
913 * Returns 0 on success, -EFAULT on failure.
914 */
Hugh Dickins8dd35572009-12-14 17:59:18 -0800915static int replace_page(struct vm_area_struct *vma, struct page *page,
916 struct page *kpage, pte_t orig_pte)
Izik Eidus31dbd012009-09-21 17:02:03 -0700917{
918 struct mm_struct *mm = vma->vm_mm;
Izik Eidus31dbd012009-09-21 17:02:03 -0700919 pmd_t *pmd;
920 pte_t *ptep;
921 spinlock_t *ptl;
922 unsigned long addr;
Izik Eidus31dbd012009-09-21 17:02:03 -0700923 int err = -EFAULT;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700924 unsigned long mmun_start; /* For mmu_notifiers */
925 unsigned long mmun_end; /* For mmu_notifiers */
Izik Eidus31dbd012009-09-21 17:02:03 -0700926
Hugh Dickins8dd35572009-12-14 17:59:18 -0800927 addr = page_address_in_vma(page, vma);
Izik Eidus31dbd012009-09-21 17:02:03 -0700928 if (addr == -EFAULT)
929 goto out;
930
Bob Liu62190492012-12-11 16:00:37 -0800931 pmd = mm_find_pmd(mm, addr);
932 if (!pmd)
Izik Eidus31dbd012009-09-21 17:02:03 -0700933 goto out;
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800934 BUG_ON(pmd_trans_huge(*pmd));
Izik Eidus31dbd012009-09-21 17:02:03 -0700935
Haggai Eran6bdb9132012-10-08 16:33:35 -0700936 mmun_start = addr;
937 mmun_end = addr + PAGE_SIZE;
938 mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
939
Izik Eidus31dbd012009-09-21 17:02:03 -0700940 ptep = pte_offset_map_lock(mm, pmd, addr, &ptl);
941 if (!pte_same(*ptep, orig_pte)) {
942 pte_unmap_unlock(ptep, ptl);
Haggai Eran6bdb9132012-10-08 16:33:35 -0700943 goto out_mn;
Izik Eidus31dbd012009-09-21 17:02:03 -0700944 }
945
Hugh Dickins8dd35572009-12-14 17:59:18 -0800946 get_page(kpage);
Hugh Dickins5ad64682009-12-14 17:59:24 -0800947 page_add_anon_rmap(kpage, vma, addr);
Izik Eidus31dbd012009-09-21 17:02:03 -0700948
949 flush_cache_page(vma, addr, pte_pfn(*ptep));
950 ptep_clear_flush(vma, addr, ptep);
Hugh Dickins8dd35572009-12-14 17:59:18 -0800951 set_pte_at_notify(mm, addr, ptep, mk_pte(kpage, vma->vm_page_prot));
Izik Eidus31dbd012009-09-21 17:02:03 -0700952
Hugh Dickins8dd35572009-12-14 17:59:18 -0800953 page_remove_rmap(page);
Hugh Dickinsae52a2a2011-01-13 15:46:28 -0800954 if (!page_mapped(page))
955 try_to_free_swap(page);
Hugh Dickins8dd35572009-12-14 17:59:18 -0800956 put_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -0700957
958 pte_unmap_unlock(ptep, ptl);
959 err = 0;
Haggai Eran6bdb9132012-10-08 16:33:35 -0700960out_mn:
961 mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
Izik Eidus31dbd012009-09-21 17:02:03 -0700962out:
963 return err;
964}
965
Andrea Arcangeli29ad7682011-01-13 15:47:19 -0800966static int page_trans_compound_anon_split(struct page *page)
967{
968 int ret = 0;
969 struct page *transhuge_head = page_trans_compound_anon(page);
970 if (transhuge_head) {
971 /* Get the reference on the head to split it. */
972 if (get_page_unless_zero(transhuge_head)) {
973 /*
974 * Recheck we got the reference while the head
975 * was still anonymous.
976 */
977 if (PageAnon(transhuge_head))
978 ret = split_huge_page(transhuge_head);
979 else
980 /*
981 * Retry later if split_huge_page run
982 * from under us.
983 */
984 ret = 1;
985 put_page(transhuge_head);
986 } else
987 /* Retry later if split_huge_page run from under us. */
988 ret = 1;
989 }
990 return ret;
991}
992
Izik Eidus31dbd012009-09-21 17:02:03 -0700993/*
994 * try_to_merge_one_page - take two pages and merge them into one
Hugh Dickins8dd35572009-12-14 17:59:18 -0800995 * @vma: the vma that holds the pte pointing to page
996 * @page: the PageAnon page that we want to replace with kpage
Hugh Dickins80e148222009-12-14 17:59:29 -0800997 * @kpage: the PageKsm page that we want to map instead of page,
998 * or NULL the first time when we want to use page as kpage.
Izik Eidus31dbd012009-09-21 17:02:03 -0700999 *
1000 * This function returns 0 if the pages were merged, -EFAULT otherwise.
1001 */
1002static int try_to_merge_one_page(struct vm_area_struct *vma,
Hugh Dickins8dd35572009-12-14 17:59:18 -08001003 struct page *page, struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001004{
1005 pte_t orig_pte = __pte(0);
1006 int err = -EFAULT;
1007
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001008 if (page == kpage) /* ksm page forked */
1009 return 0;
1010
Izik Eidus31dbd012009-09-21 17:02:03 -07001011 if (!(vma->vm_flags & VM_MERGEABLE))
1012 goto out;
Andrea Arcangeli29ad7682011-01-13 15:47:19 -08001013 if (PageTransCompound(page) && page_trans_compound_anon_split(page))
1014 goto out;
1015 BUG_ON(PageTransCompound(page));
Hugh Dickins8dd35572009-12-14 17:59:18 -08001016 if (!PageAnon(page))
Izik Eidus31dbd012009-09-21 17:02:03 -07001017 goto out;
1018
Izik Eidus31dbd012009-09-21 17:02:03 -07001019 /*
1020 * We need the page lock to read a stable PageSwapCache in
1021 * write_protect_page(). We use trylock_page() instead of
1022 * lock_page() because we don't want to wait here - we
1023 * prefer to continue scanning and merging different pages,
1024 * then come back to this page when it is unlocked.
1025 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001026 if (!trylock_page(page))
Hugh Dickins31e855e2009-12-14 17:59:17 -08001027 goto out;
Izik Eidus31dbd012009-09-21 17:02:03 -07001028 /*
1029 * If this anonymous page is mapped only here, its pte may need
1030 * to be write-protected. If it's mapped elsewhere, all of its
1031 * ptes are necessarily already write-protected. But in either
1032 * case, we need to lock and check page_count is not raised.
1033 */
Hugh Dickins80e148222009-12-14 17:59:29 -08001034 if (write_protect_page(vma, page, &orig_pte) == 0) {
1035 if (!kpage) {
1036 /*
1037 * While we hold page lock, upgrade page from
1038 * PageAnon+anon_vma to PageKsm+NULL stable_node:
1039 * stable_tree_insert() will update stable_node.
1040 */
1041 set_page_stable_node(page, NULL);
1042 mark_page_accessed(page);
1043 err = 0;
1044 } else if (pages_identical(page, kpage))
1045 err = replace_page(vma, page, kpage, orig_pte);
1046 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001047
Hugh Dickins80e148222009-12-14 17:59:29 -08001048 if ((vma->vm_flags & VM_LOCKED) && kpage && !err) {
Hugh Dickins73848b42009-12-14 17:59:22 -08001049 munlock_vma_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001050 if (!PageMlocked(kpage)) {
1051 unlock_page(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001052 lock_page(kpage);
1053 mlock_vma_page(kpage);
1054 page = kpage; /* for final unlock */
1055 }
1056 }
Hugh Dickins73848b42009-12-14 17:59:22 -08001057
Hugh Dickins8dd35572009-12-14 17:59:18 -08001058 unlock_page(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001059out:
1060 return err;
1061}
1062
1063/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001064 * try_to_merge_with_ksm_page - like try_to_merge_two_pages,
1065 * but no new kernel page is allocated: kpage must already be a ksm page.
Hugh Dickins8dd35572009-12-14 17:59:18 -08001066 *
1067 * This function returns 0 if the pages were merged, -EFAULT otherwise.
Hugh Dickins81464e302009-09-21 17:02:15 -07001068 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001069static int try_to_merge_with_ksm_page(struct rmap_item *rmap_item,
1070 struct page *page, struct page *kpage)
Hugh Dickins81464e302009-09-21 17:02:15 -07001071{
Hugh Dickins8dd35572009-12-14 17:59:18 -08001072 struct mm_struct *mm = rmap_item->mm;
Hugh Dickins81464e302009-09-21 17:02:15 -07001073 struct vm_area_struct *vma;
1074 int err = -EFAULT;
1075
Hugh Dickins8dd35572009-12-14 17:59:18 -08001076 down_read(&mm->mmap_sem);
1077 if (ksm_test_exit(mm))
1078 goto out;
1079 vma = find_vma(mm, rmap_item->address);
1080 if (!vma || vma->vm_start > rmap_item->address)
Hugh Dickins9ba69292009-09-21 17:02:20 -07001081 goto out;
1082
Hugh Dickins8dd35572009-12-14 17:59:18 -08001083 err = try_to_merge_one_page(vma, page, kpage);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001084 if (err)
1085 goto out;
1086
1087 /* Must get reference to anon_vma while still holding mmap_sem */
Peter Zijlstra9e601092011-03-22 16:32:46 -07001088 rmap_item->anon_vma = vma->anon_vma;
1089 get_anon_vma(vma->anon_vma);
Hugh Dickins81464e302009-09-21 17:02:15 -07001090out:
Hugh Dickins8dd35572009-12-14 17:59:18 -08001091 up_read(&mm->mmap_sem);
Hugh Dickins81464e302009-09-21 17:02:15 -07001092 return err;
1093}
1094
1095/*
Izik Eidus31dbd012009-09-21 17:02:03 -07001096 * try_to_merge_two_pages - take two identical pages and prepare them
1097 * to be merged into one page.
1098 *
Hugh Dickins8dd35572009-12-14 17:59:18 -08001099 * This function returns the kpage if we successfully merged two identical
1100 * pages into one ksm page, NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001101 *
Hugh Dickins80e148222009-12-14 17:59:29 -08001102 * Note that this function upgrades page to ksm page: if one of the pages
Izik Eidus31dbd012009-09-21 17:02:03 -07001103 * is already a ksm page, try_to_merge_with_ksm_page should be used.
1104 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001105static struct page *try_to_merge_two_pages(struct rmap_item *rmap_item,
1106 struct page *page,
1107 struct rmap_item *tree_rmap_item,
1108 struct page *tree_page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001109{
Hugh Dickins80e148222009-12-14 17:59:29 -08001110 int err;
Izik Eidus31dbd012009-09-21 17:02:03 -07001111
Hugh Dickins80e148222009-12-14 17:59:29 -08001112 err = try_to_merge_with_ksm_page(rmap_item, page, NULL);
Izik Eidus31dbd012009-09-21 17:02:03 -07001113 if (!err) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001114 err = try_to_merge_with_ksm_page(tree_rmap_item,
Hugh Dickins80e148222009-12-14 17:59:29 -08001115 tree_page, page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001116 /*
Hugh Dickins81464e302009-09-21 17:02:15 -07001117 * If that fails, we have a ksm page with only one pte
1118 * pointing to it: so break it.
Izik Eidus31dbd012009-09-21 17:02:03 -07001119 */
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001120 if (err)
Hugh Dickins8dd35572009-12-14 17:59:18 -08001121 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001122 }
Hugh Dickins80e148222009-12-14 17:59:29 -08001123 return err ? NULL : page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001124}
1125
1126/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001127 * stable_tree_search - search for page inside the stable tree
Izik Eidus31dbd012009-09-21 17:02:03 -07001128 *
1129 * This function checks if there is a page inside the stable tree
1130 * with identical content to the page that we are scanning right now.
1131 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001132 * This function returns the stable tree node of identical content if found,
Izik Eidus31dbd012009-09-21 17:02:03 -07001133 * NULL otherwise.
1134 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001135static struct page *stable_tree_search(struct page *page)
Izik Eidus31dbd012009-09-21 17:02:03 -07001136{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001137 int nid;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001138 struct rb_node **new;
1139 struct rb_node *parent;
1140 struct stable_node *stable_node;
1141 struct stable_node *page_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001142
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001143 page_node = page_stable_node(page);
1144 if (page_node && page_node->head != &migrate_nodes) {
1145 /* ksm page forked */
Hugh Dickins08beca42009-12-14 17:59:21 -08001146 get_page(page);
Hugh Dickins62b61f62009-12-14 17:59:33 -08001147 return page;
Hugh Dickins08beca42009-12-14 17:59:21 -08001148 }
1149
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001150 nid = get_kpfn_nid(page_to_pfn(page));
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001151again:
1152 new = &root_stable_tree[nid].rb_node;
1153 parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001154
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001155 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001156 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001157 int ret;
1158
Hugh Dickins08beca42009-12-14 17:59:21 -08001159 cond_resched();
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001160 stable_node = rb_entry(*new, struct stable_node, node);
Hugh Dickins8aafa6a2013-02-22 16:35:06 -08001161 tree_page = get_ksm_page(stable_node, false);
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001162 if (!tree_page)
1163 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001164
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001165 ret = memcmp_pages(page, tree_page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001166 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001167
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001168 parent = *new;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001169 if (ret < 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001170 new = &parent->rb_left;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001171 else if (ret > 0)
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001172 new = &parent->rb_right;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001173 else {
1174 /*
1175 * Lock and unlock the stable_node's page (which
1176 * might already have been migrated) so that page
1177 * migration is sure to notice its raised count.
1178 * It would be more elegant to return stable_node
1179 * than kpage, but that involves more changes.
1180 */
1181 tree_page = get_ksm_page(stable_node, true);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001182 if (tree_page) {
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001183 unlock_page(tree_page);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001184 if (get_kpfn_nid(stable_node->kpfn) !=
1185 NUMA(stable_node->nid)) {
1186 put_page(tree_page);
1187 goto replace;
1188 }
1189 return tree_page;
1190 }
1191 /*
1192 * There is now a place for page_node, but the tree may
1193 * have been rebalanced, so re-evaluate parent and new.
1194 */
1195 if (page_node)
1196 goto again;
1197 return NULL;
Hugh Dickinsc8d65532013-02-22 16:35:10 -08001198 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001199 }
1200
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001201 if (!page_node)
1202 return NULL;
1203
1204 list_del(&page_node->list);
1205 DO_NUMA(page_node->nid = nid);
1206 rb_link_node(&page_node->node, parent, new);
1207 rb_insert_color(&page_node->node, &root_stable_tree[nid]);
1208 get_page(page);
1209 return page;
1210
1211replace:
1212 if (page_node) {
1213 list_del(&page_node->list);
1214 DO_NUMA(page_node->nid = nid);
1215 rb_replace_node(&stable_node->node,
1216 &page_node->node, &root_stable_tree[nid]);
1217 get_page(page);
1218 } else {
1219 rb_erase(&stable_node->node, &root_stable_tree[nid]);
1220 page = NULL;
1221 }
1222 stable_node->head = &migrate_nodes;
1223 list_add(&stable_node->list, stable_node->head);
1224 return page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001225}
1226
1227/*
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001228 * stable_tree_insert - insert stable tree node pointing to new ksm page
Izik Eidus31dbd012009-09-21 17:02:03 -07001229 * into the stable tree.
1230 *
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001231 * This function returns the stable tree node just allocated on success,
1232 * NULL otherwise.
Izik Eidus31dbd012009-09-21 17:02:03 -07001233 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001234static struct stable_node *stable_tree_insert(struct page *kpage)
Izik Eidus31dbd012009-09-21 17:02:03 -07001235{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001236 int nid;
1237 unsigned long kpfn;
1238 struct rb_node **new;
Izik Eidus31dbd012009-09-21 17:02:03 -07001239 struct rb_node *parent = NULL;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001240 struct stable_node *stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001241
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001242 kpfn = page_to_pfn(kpage);
1243 nid = get_kpfn_nid(kpfn);
1244 new = &root_stable_tree[nid].rb_node;
1245
Izik Eidus31dbd012009-09-21 17:02:03 -07001246 while (*new) {
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001247 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001248 int ret;
1249
Hugh Dickins08beca42009-12-14 17:59:21 -08001250 cond_resched();
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001251 stable_node = rb_entry(*new, struct stable_node, node);
Hugh Dickins8aafa6a2013-02-22 16:35:06 -08001252 tree_page = get_ksm_page(stable_node, false);
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001253 if (!tree_page)
1254 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001255
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001256 ret = memcmp_pages(kpage, tree_page);
1257 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001258
1259 parent = *new;
1260 if (ret < 0)
1261 new = &parent->rb_left;
1262 else if (ret > 0)
1263 new = &parent->rb_right;
1264 else {
1265 /*
1266 * It is not a bug that stable_tree_search() didn't
1267 * find this node: because at that time our page was
1268 * not yet write-protected, so may have changed since.
1269 */
1270 return NULL;
1271 }
1272 }
1273
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001274 stable_node = alloc_stable_node();
1275 if (!stable_node)
1276 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001277
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001278 INIT_HLIST_HEAD(&stable_node->hlist);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001279 stable_node->kpfn = kpfn;
Hugh Dickins08beca42009-12-14 17:59:21 -08001280 set_page_stable_node(kpage, stable_node);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001281 DO_NUMA(stable_node->nid = nid);
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001282 rb_link_node(&stable_node->node, parent, new);
1283 rb_insert_color(&stable_node->node, &root_stable_tree[nid]);
Hugh Dickins08beca42009-12-14 17:59:21 -08001284
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001285 return stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001286}
1287
1288/*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001289 * unstable_tree_search_insert - search for identical page,
1290 * else insert rmap_item into the unstable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001291 *
1292 * This function searches for a page in the unstable tree identical to the
1293 * page currently being scanned; and if no identical page is found in the
1294 * tree, we insert rmap_item as a new object into the unstable tree.
1295 *
1296 * This function returns pointer to rmap_item found to be identical
1297 * to the currently scanned page, NULL otherwise.
1298 *
1299 * This function does both searching and inserting, because they share
1300 * the same walking algorithm in an rbtree.
1301 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001302static
1303struct rmap_item *unstable_tree_search_insert(struct rmap_item *rmap_item,
1304 struct page *page,
1305 struct page **tree_pagep)
Izik Eidus31dbd012009-09-21 17:02:03 -07001306{
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001307 struct rb_node **new;
1308 struct rb_root *root;
Izik Eidus31dbd012009-09-21 17:02:03 -07001309 struct rb_node *parent = NULL;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001310 int nid;
1311
1312 nid = get_kpfn_nid(page_to_pfn(page));
1313 root = &root_unstable_tree[nid];
1314 new = &root->rb_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001315
1316 while (*new) {
1317 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001318 struct page *tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001319 int ret;
1320
Hugh Dickinsd178f272009-11-09 15:58:23 +00001321 cond_resched();
Izik Eidus31dbd012009-09-21 17:02:03 -07001322 tree_rmap_item = rb_entry(*new, struct rmap_item, node);
Hugh Dickins8dd35572009-12-14 17:59:18 -08001323 tree_page = get_mergeable_page(tree_rmap_item);
Dan Carpenter22eccdd2010-04-23 13:18:10 -04001324 if (IS_ERR_OR_NULL(tree_page))
Izik Eidus31dbd012009-09-21 17:02:03 -07001325 return NULL;
1326
1327 /*
Hugh Dickins8dd35572009-12-14 17:59:18 -08001328 * Don't substitute a ksm page for a forked page.
Izik Eidus31dbd012009-09-21 17:02:03 -07001329 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001330 if (page == tree_page) {
1331 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001332 return NULL;
1333 }
1334
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001335 /*
1336 * If tree_page has been migrated to another NUMA node, it
1337 * will be flushed out and put into the right unstable tree
1338 * next time: only merge with it if merge_across_nodes.
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001339 */
1340 if (!ksm_merge_across_nodes && page_to_nid(tree_page) != nid) {
1341 put_page(tree_page);
1342 return NULL;
1343 }
1344
Hugh Dickins8dd35572009-12-14 17:59:18 -08001345 ret = memcmp_pages(page, tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001346
1347 parent = *new;
1348 if (ret < 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001349 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001350 new = &parent->rb_left;
1351 } else if (ret > 0) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001352 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001353 new = &parent->rb_right;
1354 } else {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001355 *tree_pagep = tree_page;
Izik Eidus31dbd012009-09-21 17:02:03 -07001356 return tree_rmap_item;
1357 }
1358 }
1359
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001360 rmap_item->address |= UNSTABLE_FLAG;
Izik Eidus31dbd012009-09-21 17:02:03 -07001361 rmap_item->address |= (ksm_scan.seqnr & SEQNR_MASK);
Hugh Dickinse850dcf2013-02-22 16:35:03 -08001362 DO_NUMA(rmap_item->nid = nid);
Izik Eidus31dbd012009-09-21 17:02:03 -07001363 rb_link_node(&rmap_item->node, parent, new);
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001364 rb_insert_color(&rmap_item->node, root);
Izik Eidus31dbd012009-09-21 17:02:03 -07001365
Hugh Dickins473b0ce2009-09-21 17:02:11 -07001366 ksm_pages_unshared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001367 return NULL;
1368}
1369
1370/*
1371 * stable_tree_append - add another rmap_item to the linked list of
1372 * rmap_items hanging off a given node of the stable tree, all sharing
1373 * the same ksm page.
1374 */
1375static void stable_tree_append(struct rmap_item *rmap_item,
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001376 struct stable_node *stable_node)
Izik Eidus31dbd012009-09-21 17:02:03 -07001377{
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001378 rmap_item->head = stable_node;
Izik Eidus31dbd012009-09-21 17:02:03 -07001379 rmap_item->address |= STABLE_FLAG;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001380 hlist_add_head(&rmap_item->hlist, &stable_node->hlist);
Hugh Dickinse178dfd2009-09-21 17:02:10 -07001381
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001382 if (rmap_item->hlist.next)
1383 ksm_pages_sharing++;
1384 else
1385 ksm_pages_shared++;
Izik Eidus31dbd012009-09-21 17:02:03 -07001386}
1387
1388/*
Hugh Dickins81464e302009-09-21 17:02:15 -07001389 * cmp_and_merge_page - first see if page can be merged into the stable tree;
1390 * if not, compare checksum to previous and if it's the same, see if page can
1391 * be inserted into the unstable tree, or merged with a page already there and
1392 * both transferred to the stable tree.
Izik Eidus31dbd012009-09-21 17:02:03 -07001393 *
1394 * @page: the page that we are searching identical page to.
1395 * @rmap_item: the reverse mapping into the virtual address of this page
1396 */
1397static void cmp_and_merge_page(struct page *page, struct rmap_item *rmap_item)
1398{
Izik Eidus31dbd012009-09-21 17:02:03 -07001399 struct rmap_item *tree_rmap_item;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001400 struct page *tree_page = NULL;
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001401 struct stable_node *stable_node;
Hugh Dickins8dd35572009-12-14 17:59:18 -08001402 struct page *kpage;
Izik Eidus31dbd012009-09-21 17:02:03 -07001403 unsigned int checksum;
1404 int err;
1405
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001406 stable_node = page_stable_node(page);
1407 if (stable_node) {
1408 if (stable_node->head != &migrate_nodes &&
1409 get_kpfn_nid(stable_node->kpfn) != NUMA(stable_node->nid)) {
1410 rb_erase(&stable_node->node,
1411 &root_stable_tree[NUMA(stable_node->nid)]);
1412 stable_node->head = &migrate_nodes;
1413 list_add(&stable_node->list, stable_node->head);
1414 }
1415 if (stable_node->head != &migrate_nodes &&
1416 rmap_item->head == stable_node)
1417 return;
1418 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001419
1420 /* We first start with searching the page inside the stable tree */
Hugh Dickins62b61f62009-12-14 17:59:33 -08001421 kpage = stable_tree_search(page);
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001422 if (kpage == page && rmap_item->head == stable_node) {
1423 put_page(kpage);
1424 return;
1425 }
1426
1427 remove_rmap_item_from_tree(rmap_item);
1428
Hugh Dickins62b61f62009-12-14 17:59:33 -08001429 if (kpage) {
Hugh Dickins08beca42009-12-14 17:59:21 -08001430 err = try_to_merge_with_ksm_page(rmap_item, page, kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001431 if (!err) {
1432 /*
1433 * The page was successfully merged:
1434 * add its rmap_item to the stable tree.
1435 */
Hugh Dickins5ad64682009-12-14 17:59:24 -08001436 lock_page(kpage);
Hugh Dickins62b61f62009-12-14 17:59:33 -08001437 stable_tree_append(rmap_item, page_stable_node(kpage));
Hugh Dickins5ad64682009-12-14 17:59:24 -08001438 unlock_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001439 }
Hugh Dickins8dd35572009-12-14 17:59:18 -08001440 put_page(kpage);
Izik Eidus31dbd012009-09-21 17:02:03 -07001441 return;
1442 }
1443
1444 /*
Hugh Dickins4035c07a2009-12-14 17:59:27 -08001445 * If the hash value of the page has changed from the last time
1446 * we calculated it, this page is changing frequently: therefore we
1447 * don't want to insert it in the unstable tree, and we don't want
1448 * to waste our time searching for something identical to it there.
Izik Eidus31dbd012009-09-21 17:02:03 -07001449 */
1450 checksum = calc_checksum(page);
1451 if (rmap_item->oldchecksum != checksum) {
1452 rmap_item->oldchecksum = checksum;
1453 return;
1454 }
1455
Hugh Dickins8dd35572009-12-14 17:59:18 -08001456 tree_rmap_item =
1457 unstable_tree_search_insert(rmap_item, page, &tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001458 if (tree_rmap_item) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001459 kpage = try_to_merge_two_pages(rmap_item, page,
1460 tree_rmap_item, tree_page);
1461 put_page(tree_page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001462 /*
1463 * As soon as we merge this page, we want to remove the
1464 * rmap_item of the page we have merged with from the unstable
1465 * tree, and insert it instead as new node in the stable tree.
1466 */
Hugh Dickins8dd35572009-12-14 17:59:18 -08001467 if (kpage) {
Hugh Dickins93d17712009-12-14 17:59:16 -08001468 remove_rmap_item_from_tree(tree_rmap_item);
Hugh Dickins473b0ce2009-09-21 17:02:11 -07001469
Hugh Dickins5ad64682009-12-14 17:59:24 -08001470 lock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001471 stable_node = stable_tree_insert(kpage);
1472 if (stable_node) {
1473 stable_tree_append(tree_rmap_item, stable_node);
1474 stable_tree_append(rmap_item, stable_node);
1475 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08001476 unlock_page(kpage);
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001477
Izik Eidus31dbd012009-09-21 17:02:03 -07001478 /*
1479 * If we fail to insert the page into the stable tree,
1480 * we will have 2 virtual addresses that are pointing
1481 * to a ksm page left outside the stable tree,
1482 * in which case we need to break_cow on both.
1483 */
Hugh Dickins7b6ba2c2009-12-14 17:59:20 -08001484 if (!stable_node) {
Hugh Dickins8dd35572009-12-14 17:59:18 -08001485 break_cow(tree_rmap_item);
1486 break_cow(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001487 }
1488 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001489 }
1490}
1491
1492static struct rmap_item *get_next_rmap_item(struct mm_slot *mm_slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08001493 struct rmap_item **rmap_list,
Izik Eidus31dbd012009-09-21 17:02:03 -07001494 unsigned long addr)
1495{
1496 struct rmap_item *rmap_item;
1497
Hugh Dickins6514d512009-12-14 17:59:19 -08001498 while (*rmap_list) {
1499 rmap_item = *rmap_list;
Hugh Dickins93d17712009-12-14 17:59:16 -08001500 if ((rmap_item->address & PAGE_MASK) == addr)
Izik Eidus31dbd012009-09-21 17:02:03 -07001501 return rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07001502 if (rmap_item->address > addr)
1503 break;
Hugh Dickins6514d512009-12-14 17:59:19 -08001504 *rmap_list = rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07001505 remove_rmap_item_from_tree(rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001506 free_rmap_item(rmap_item);
1507 }
1508
1509 rmap_item = alloc_rmap_item();
1510 if (rmap_item) {
1511 /* It has already been zeroed */
1512 rmap_item->mm = mm_slot->mm;
1513 rmap_item->address = addr;
Hugh Dickins6514d512009-12-14 17:59:19 -08001514 rmap_item->rmap_list = *rmap_list;
1515 *rmap_list = rmap_item;
Izik Eidus31dbd012009-09-21 17:02:03 -07001516 }
1517 return rmap_item;
1518}
1519
1520static struct rmap_item *scan_get_next_rmap_item(struct page **page)
1521{
1522 struct mm_struct *mm;
1523 struct mm_slot *slot;
1524 struct vm_area_struct *vma;
1525 struct rmap_item *rmap_item;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001526 int nid;
Izik Eidus31dbd012009-09-21 17:02:03 -07001527
1528 if (list_empty(&ksm_mm_head.mm_list))
1529 return NULL;
1530
1531 slot = ksm_scan.mm_slot;
1532 if (slot == &ksm_mm_head) {
Hugh Dickins2919bfd2011-01-13 15:47:29 -08001533 /*
1534 * A number of pages can hang around indefinitely on per-cpu
1535 * pagevecs, raised page count preventing write_protect_page
1536 * from merging them. Though it doesn't really matter much,
1537 * it is puzzling to see some stuck in pages_volatile until
1538 * other activity jostles them out, and they also prevented
1539 * LTP's KSM test from succeeding deterministically; so drain
1540 * them here (here rather than on entry to ksm_do_scan(),
1541 * so we don't IPI too often when pages_to_scan is set low).
1542 */
1543 lru_add_drain_all();
1544
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001545 /*
1546 * Whereas stale stable_nodes on the stable_tree itself
1547 * get pruned in the regular course of stable_tree_search(),
1548 * those moved out to the migrate_nodes list can accumulate:
1549 * so prune them once before each full scan.
1550 */
1551 if (!ksm_merge_across_nodes) {
1552 struct stable_node *stable_node;
1553 struct list_head *this, *next;
1554 struct page *page;
1555
1556 list_for_each_safe(this, next, &migrate_nodes) {
1557 stable_node = list_entry(this,
1558 struct stable_node, list);
1559 page = get_ksm_page(stable_node, false);
1560 if (page)
1561 put_page(page);
1562 cond_resched();
1563 }
1564 }
1565
Petr Holasek90bd6fd2013-02-22 16:35:00 -08001566 for (nid = 0; nid < nr_node_ids; nid++)
1567 root_unstable_tree[nid] = RB_ROOT;
Izik Eidus31dbd012009-09-21 17:02:03 -07001568
1569 spin_lock(&ksm_mmlist_lock);
1570 slot = list_entry(slot->mm_list.next, struct mm_slot, mm_list);
1571 ksm_scan.mm_slot = slot;
1572 spin_unlock(&ksm_mmlist_lock);
Hugh Dickins2b472612011-06-15 15:08:58 -07001573 /*
1574 * Although we tested list_empty() above, a racing __ksm_exit
1575 * of the last mm on the list may have removed it since then.
1576 */
1577 if (slot == &ksm_mm_head)
1578 return NULL;
Izik Eidus31dbd012009-09-21 17:02:03 -07001579next_mm:
1580 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08001581 ksm_scan.rmap_list = &slot->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07001582 }
1583
1584 mm = slot->mm;
1585 down_read(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001586 if (ksm_test_exit(mm))
1587 vma = NULL;
1588 else
1589 vma = find_vma(mm, ksm_scan.address);
1590
1591 for (; vma; vma = vma->vm_next) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001592 if (!(vma->vm_flags & VM_MERGEABLE))
1593 continue;
1594 if (ksm_scan.address < vma->vm_start)
1595 ksm_scan.address = vma->vm_start;
1596 if (!vma->anon_vma)
1597 ksm_scan.address = vma->vm_end;
1598
1599 while (ksm_scan.address < vma->vm_end) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07001600 if (ksm_test_exit(mm))
1601 break;
Izik Eidus31dbd012009-09-21 17:02:03 -07001602 *page = follow_page(vma, ksm_scan.address, FOLL_GET);
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08001603 if (IS_ERR_OR_NULL(*page)) {
1604 ksm_scan.address += PAGE_SIZE;
1605 cond_resched();
1606 continue;
1607 }
Andrea Arcangeli29ad7682011-01-13 15:47:19 -08001608 if (PageAnon(*page) ||
1609 page_trans_compound_anon(*page)) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001610 flush_anon_page(vma, *page, ksm_scan.address);
1611 flush_dcache_page(*page);
1612 rmap_item = get_next_rmap_item(slot,
Hugh Dickins6514d512009-12-14 17:59:19 -08001613 ksm_scan.rmap_list, ksm_scan.address);
Izik Eidus31dbd012009-09-21 17:02:03 -07001614 if (rmap_item) {
Hugh Dickins6514d512009-12-14 17:59:19 -08001615 ksm_scan.rmap_list =
1616 &rmap_item->rmap_list;
Izik Eidus31dbd012009-09-21 17:02:03 -07001617 ksm_scan.address += PAGE_SIZE;
1618 } else
1619 put_page(*page);
1620 up_read(&mm->mmap_sem);
1621 return rmap_item;
1622 }
Andrea Arcangeli21ae5b02011-01-13 15:47:00 -08001623 put_page(*page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001624 ksm_scan.address += PAGE_SIZE;
1625 cond_resched();
1626 }
1627 }
1628
Hugh Dickins9ba69292009-09-21 17:02:20 -07001629 if (ksm_test_exit(mm)) {
1630 ksm_scan.address = 0;
Hugh Dickins6514d512009-12-14 17:59:19 -08001631 ksm_scan.rmap_list = &slot->rmap_list;
Hugh Dickins9ba69292009-09-21 17:02:20 -07001632 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001633 /*
1634 * Nuke all the rmap_items that are above this current rmap:
1635 * because there were no VM_MERGEABLE vmas with such addresses.
1636 */
Hugh Dickins6514d512009-12-14 17:59:19 -08001637 remove_trailing_rmap_items(slot, ksm_scan.rmap_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07001638
1639 spin_lock(&ksm_mmlist_lock);
Hugh Dickinscd551f92009-09-21 17:02:17 -07001640 ksm_scan.mm_slot = list_entry(slot->mm_list.next,
1641 struct mm_slot, mm_list);
1642 if (ksm_scan.address == 0) {
1643 /*
1644 * We've completed a full scan of all vmas, holding mmap_sem
1645 * throughout, and found no VM_MERGEABLE: so do the same as
1646 * __ksm_exit does to remove this mm from all our lists now.
Hugh Dickins9ba69292009-09-21 17:02:20 -07001647 * This applies either when cleaning up after __ksm_exit
1648 * (but beware: we can reach here even before __ksm_exit),
1649 * or when all VM_MERGEABLE areas have been unmapped (and
1650 * mmap_sem then protects against race with MADV_MERGEABLE).
Hugh Dickinscd551f92009-09-21 17:02:17 -07001651 */
Sasha Levin4ca3a692013-02-22 16:32:28 -08001652 hash_del(&slot->link);
Hugh Dickinscd551f92009-09-21 17:02:17 -07001653 list_del(&slot->mm_list);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001654 spin_unlock(&ksm_mmlist_lock);
1655
Hugh Dickinscd551f92009-09-21 17:02:17 -07001656 free_mm_slot(slot);
1657 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001658 up_read(&mm->mmap_sem);
1659 mmdrop(mm);
1660 } else {
1661 spin_unlock(&ksm_mmlist_lock);
1662 up_read(&mm->mmap_sem);
Hugh Dickinscd551f92009-09-21 17:02:17 -07001663 }
Izik Eidus31dbd012009-09-21 17:02:03 -07001664
1665 /* Repeat until we've completed scanning the whole list */
Hugh Dickinscd551f92009-09-21 17:02:17 -07001666 slot = ksm_scan.mm_slot;
Izik Eidus31dbd012009-09-21 17:02:03 -07001667 if (slot != &ksm_mm_head)
1668 goto next_mm;
1669
Izik Eidus31dbd012009-09-21 17:02:03 -07001670 ksm_scan.seqnr++;
1671 return NULL;
1672}
1673
1674/**
1675 * ksm_do_scan - the ksm scanner main worker function.
1676 * @scan_npages - number of pages we want to scan before we return.
1677 */
1678static void ksm_do_scan(unsigned int scan_npages)
1679{
1680 struct rmap_item *rmap_item;
Dan Carpenter22eccdd2010-04-23 13:18:10 -04001681 struct page *uninitialized_var(page);
Izik Eidus31dbd012009-09-21 17:02:03 -07001682
Andrea Arcangeli878aee72011-01-13 15:47:10 -08001683 while (scan_npages-- && likely(!freezing(current))) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001684 cond_resched();
1685 rmap_item = scan_get_next_rmap_item(&page);
1686 if (!rmap_item)
1687 return;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08001688 cmp_and_merge_page(page, rmap_item);
Izik Eidus31dbd012009-09-21 17:02:03 -07001689 put_page(page);
1690 }
1691}
1692
Hugh Dickins6e1583842009-09-21 17:02:14 -07001693static int ksmd_should_run(void)
1694{
1695 return (ksm_run & KSM_RUN_MERGE) && !list_empty(&ksm_mm_head.mm_list);
1696}
1697
Izik Eidus31dbd012009-09-21 17:02:03 -07001698static int ksm_scan_thread(void *nothing)
1699{
Andrea Arcangeli878aee72011-01-13 15:47:10 -08001700 set_freezable();
Izik Eidus339aa622009-09-21 17:02:07 -07001701 set_user_nice(current, 5);
Izik Eidus31dbd012009-09-21 17:02:03 -07001702
1703 while (!kthread_should_stop()) {
Hugh Dickins6e1583842009-09-21 17:02:14 -07001704 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08001705 wait_while_offlining();
Hugh Dickins6e1583842009-09-21 17:02:14 -07001706 if (ksmd_should_run())
Izik Eidus31dbd012009-09-21 17:02:03 -07001707 ksm_do_scan(ksm_thread_pages_to_scan);
Hugh Dickins6e1583842009-09-21 17:02:14 -07001708 mutex_unlock(&ksm_thread_mutex);
1709
Andrea Arcangeli878aee72011-01-13 15:47:10 -08001710 try_to_freeze();
1711
Hugh Dickins6e1583842009-09-21 17:02:14 -07001712 if (ksmd_should_run()) {
Izik Eidus31dbd012009-09-21 17:02:03 -07001713 schedule_timeout_interruptible(
1714 msecs_to_jiffies(ksm_thread_sleep_millisecs));
1715 } else {
Andrea Arcangeli878aee72011-01-13 15:47:10 -08001716 wait_event_freezable(ksm_thread_wait,
Hugh Dickins6e1583842009-09-21 17:02:14 -07001717 ksmd_should_run() || kthread_should_stop());
Izik Eidus31dbd012009-09-21 17:02:03 -07001718 }
1719 }
1720 return 0;
1721}
1722
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001723int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
1724 unsigned long end, int advice, unsigned long *vm_flags)
1725{
1726 struct mm_struct *mm = vma->vm_mm;
Hugh Dickinsd952b792009-09-21 17:02:16 -07001727 int err;
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001728
1729 switch (advice) {
1730 case MADV_MERGEABLE:
1731 /*
1732 * Be somewhat over-protective for now!
1733 */
1734 if (*vm_flags & (VM_MERGEABLE | VM_SHARED | VM_MAYSHARE |
1735 VM_PFNMAP | VM_IO | VM_DONTEXPAND |
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001736 VM_HUGETLB | VM_NONLINEAR | VM_MIXEDMAP))
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001737 return 0; /* just ignore the advice */
1738
Konstantin Khlebnikovcc2383e2012-10-08 16:28:37 -07001739#ifdef VM_SAO
1740 if (*vm_flags & VM_SAO)
1741 return 0;
1742#endif
1743
Hugh Dickinsd952b792009-09-21 17:02:16 -07001744 if (!test_bit(MMF_VM_MERGEABLE, &mm->flags)) {
1745 err = __ksm_enter(mm);
1746 if (err)
1747 return err;
1748 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001749
1750 *vm_flags |= VM_MERGEABLE;
1751 break;
1752
1753 case MADV_UNMERGEABLE:
1754 if (!(*vm_flags & VM_MERGEABLE))
1755 return 0; /* just ignore the advice */
1756
Hugh Dickinsd952b792009-09-21 17:02:16 -07001757 if (vma->anon_vma) {
1758 err = unmerge_ksm_pages(vma, start, end);
1759 if (err)
1760 return err;
1761 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001762
1763 *vm_flags &= ~VM_MERGEABLE;
1764 break;
1765 }
1766
1767 return 0;
1768}
1769
1770int __ksm_enter(struct mm_struct *mm)
1771{
Hugh Dickins6e1583842009-09-21 17:02:14 -07001772 struct mm_slot *mm_slot;
1773 int needs_wakeup;
1774
1775 mm_slot = alloc_mm_slot();
Izik Eidus31dbd012009-09-21 17:02:03 -07001776 if (!mm_slot)
1777 return -ENOMEM;
1778
Hugh Dickins6e1583842009-09-21 17:02:14 -07001779 /* Check ksm_run too? Would need tighter locking */
1780 needs_wakeup = list_empty(&ksm_mm_head.mm_list);
1781
Izik Eidus31dbd012009-09-21 17:02:03 -07001782 spin_lock(&ksm_mmlist_lock);
1783 insert_to_mm_slots_hash(mm, mm_slot);
1784 /*
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001785 * When KSM_RUN_MERGE (or KSM_RUN_STOP),
1786 * insert just behind the scanning cursor, to let the area settle
Izik Eidus31dbd012009-09-21 17:02:03 -07001787 * down a little; when fork is followed by immediate exec, we don't
1788 * want ksmd to waste time setting up and tearing down an rmap_list.
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001789 *
1790 * But when KSM_RUN_UNMERGE, it's important to insert ahead of its
1791 * scanning cursor, otherwise KSM pages in newly forked mms will be
1792 * missed: then we might as well insert at the end of the list.
Izik Eidus31dbd012009-09-21 17:02:03 -07001793 */
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001794 if (ksm_run & KSM_RUN_UNMERGE)
1795 list_add_tail(&mm_slot->mm_list, &ksm_mm_head.mm_list);
1796 else
1797 list_add_tail(&mm_slot->mm_list, &ksm_scan.mm_slot->mm_list);
Izik Eidus31dbd012009-09-21 17:02:03 -07001798 spin_unlock(&ksm_mmlist_lock);
1799
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001800 set_bit(MMF_VM_MERGEABLE, &mm->flags);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001801 atomic_inc(&mm->mm_count);
Hugh Dickins6e1583842009-09-21 17:02:14 -07001802
1803 if (needs_wakeup)
1804 wake_up_interruptible(&ksm_thread_wait);
1805
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001806 return 0;
1807}
1808
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -07001809void __ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001810{
Hugh Dickinscd551f92009-09-21 17:02:17 -07001811 struct mm_slot *mm_slot;
Hugh Dickins9ba69292009-09-21 17:02:20 -07001812 int easy_to_free = 0;
Hugh Dickinscd551f92009-09-21 17:02:17 -07001813
Izik Eidus31dbd012009-09-21 17:02:03 -07001814 /*
Hugh Dickins9ba69292009-09-21 17:02:20 -07001815 * This process is exiting: if it's straightforward (as is the
1816 * case when ksmd was never running), free mm_slot immediately.
1817 * But if it's at the cursor or has rmap_items linked to it, use
1818 * mmap_sem to synchronize with any break_cows before pagetables
1819 * are freed, and leave the mm_slot on the list for ksmd to free.
1820 * Beware: ksm may already have noticed it exiting and freed the slot.
Izik Eidus31dbd012009-09-21 17:02:03 -07001821 */
Hugh Dickins9ba69292009-09-21 17:02:20 -07001822
Hugh Dickinscd551f92009-09-21 17:02:17 -07001823 spin_lock(&ksm_mmlist_lock);
1824 mm_slot = get_mm_slot(mm);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001825 if (mm_slot && ksm_scan.mm_slot != mm_slot) {
Hugh Dickins6514d512009-12-14 17:59:19 -08001826 if (!mm_slot->rmap_list) {
Sasha Levin4ca3a692013-02-22 16:32:28 -08001827 hash_del(&mm_slot->link);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001828 list_del(&mm_slot->mm_list);
1829 easy_to_free = 1;
1830 } else {
1831 list_move(&mm_slot->mm_list,
1832 &ksm_scan.mm_slot->mm_list);
1833 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07001834 }
Hugh Dickinscd551f92009-09-21 17:02:17 -07001835 spin_unlock(&ksm_mmlist_lock);
1836
Hugh Dickins9ba69292009-09-21 17:02:20 -07001837 if (easy_to_free) {
1838 free_mm_slot(mm_slot);
1839 clear_bit(MMF_VM_MERGEABLE, &mm->flags);
1840 mmdrop(mm);
1841 } else if (mm_slot) {
Hugh Dickins9ba69292009-09-21 17:02:20 -07001842 down_write(&mm->mmap_sem);
1843 up_write(&mm->mmap_sem);
Hugh Dickins9ba69292009-09-21 17:02:20 -07001844 }
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001845}
Izik Eidus31dbd012009-09-21 17:02:03 -07001846
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001847struct page *ksm_might_need_to_copy(struct page *page,
Hugh Dickins5ad64682009-12-14 17:59:24 -08001848 struct vm_area_struct *vma, unsigned long address)
1849{
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001850 struct anon_vma *anon_vma = page_anon_vma(page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001851 struct page *new_page;
1852
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08001853 if (PageKsm(page)) {
1854 if (page_stable_node(page) &&
1855 !(ksm_run & KSM_RUN_UNMERGE))
1856 return page; /* no need to copy it */
1857 } else if (!anon_vma) {
1858 return page; /* no need to copy it */
1859 } else if (anon_vma->root == vma->anon_vma->root &&
1860 page->index == linear_page_index(vma, address)) {
1861 return page; /* still no need to copy it */
1862 }
1863 if (!PageUptodate(page))
1864 return page; /* let do_swap_page report the error */
1865
Hugh Dickins5ad64682009-12-14 17:59:24 -08001866 new_page = alloc_page_vma(GFP_HIGHUSER_MOVABLE, vma, address);
1867 if (new_page) {
1868 copy_user_highpage(new_page, page, address, vma);
1869
1870 SetPageDirty(new_page);
1871 __SetPageUptodate(new_page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001872 __set_page_locked(new_page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001873 }
1874
Hugh Dickins5ad64682009-12-14 17:59:24 -08001875 return new_page;
1876}
1877
1878int page_referenced_ksm(struct page *page, struct mem_cgroup *memcg,
1879 unsigned long *vm_flags)
1880{
1881 struct stable_node *stable_node;
1882 struct rmap_item *rmap_item;
1883 struct hlist_node *hlist;
1884 unsigned int mapcount = page_mapcount(page);
1885 int referenced = 0;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001886 int search_new_forks = 0;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001887
1888 VM_BUG_ON(!PageKsm(page));
1889 VM_BUG_ON(!PageLocked(page));
1890
1891 stable_node = page_stable_node(page);
1892 if (!stable_node)
1893 return 0;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001894again:
Hugh Dickins5ad64682009-12-14 17:59:24 -08001895 hlist_for_each_entry(rmap_item, hlist, &stable_node->hlist, hlist) {
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001896 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08001897 struct anon_vma_chain *vmac;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001898 struct vm_area_struct *vma;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001899
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08001900 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07001901 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
1902 0, ULONG_MAX) {
Rik van Riel5beb4932010-03-05 13:42:07 -08001903 vma = vmac->vma;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001904 if (rmap_item->address < vma->vm_start ||
1905 rmap_item->address >= vma->vm_end)
1906 continue;
1907 /*
1908 * Initially we examine only the vma which covers this
1909 * rmap_item; but later, if there is still work to do,
1910 * we examine covering vmas in other mms: in case they
1911 * were forked from the original since ksmd passed.
1912 */
1913 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
1914 continue;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001915
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001916 if (memcg && !mm_match_cgroup(vma->vm_mm, memcg))
1917 continue;
1918
1919 referenced += page_referenced_one(page, vma,
Hugh Dickins5ad64682009-12-14 17:59:24 -08001920 rmap_item->address, &mapcount, vm_flags);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001921 if (!search_new_forks || !mapcount)
1922 break;
1923 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08001924 anon_vma_unlock_read(anon_vma);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001925 if (!mapcount)
1926 goto out;
1927 }
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001928 if (!search_new_forks++)
1929 goto again;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001930out:
Hugh Dickins5ad64682009-12-14 17:59:24 -08001931 return referenced;
1932}
1933
1934int try_to_unmap_ksm(struct page *page, enum ttu_flags flags)
1935{
1936 struct stable_node *stable_node;
1937 struct hlist_node *hlist;
1938 struct rmap_item *rmap_item;
1939 int ret = SWAP_AGAIN;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001940 int search_new_forks = 0;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001941
1942 VM_BUG_ON(!PageKsm(page));
1943 VM_BUG_ON(!PageLocked(page));
1944
1945 stable_node = page_stable_node(page);
1946 if (!stable_node)
1947 return SWAP_FAIL;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001948again:
Hugh Dickins5ad64682009-12-14 17:59:24 -08001949 hlist_for_each_entry(rmap_item, hlist, &stable_node->hlist, hlist) {
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001950 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08001951 struct anon_vma_chain *vmac;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001952 struct vm_area_struct *vma;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001953
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08001954 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07001955 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
1956 0, ULONG_MAX) {
Rik van Riel5beb4932010-03-05 13:42:07 -08001957 vma = vmac->vma;
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001958 if (rmap_item->address < vma->vm_start ||
1959 rmap_item->address >= vma->vm_end)
1960 continue;
1961 /*
1962 * Initially we examine only the vma which covers this
1963 * rmap_item; but later, if there is still work to do,
1964 * we examine covering vmas in other mms: in case they
1965 * were forked from the original since ksmd passed.
1966 */
1967 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
1968 continue;
1969
1970 ret = try_to_unmap_one(page, vma,
1971 rmap_item->address, flags);
1972 if (ret != SWAP_AGAIN || !page_mapped(page)) {
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08001973 anon_vma_unlock_read(anon_vma);
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001974 goto out;
1975 }
1976 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08001977 anon_vma_unlock_read(anon_vma);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001978 }
Hugh Dickinsdb114b82009-12-14 17:59:25 -08001979 if (!search_new_forks++)
1980 goto again;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001981out:
Hugh Dickins5ad64682009-12-14 17:59:24 -08001982 return ret;
1983}
1984
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001985#ifdef CONFIG_MIGRATION
1986int rmap_walk_ksm(struct page *page, int (*rmap_one)(struct page *,
1987 struct vm_area_struct *, unsigned long, void *), void *arg)
1988{
1989 struct stable_node *stable_node;
1990 struct hlist_node *hlist;
1991 struct rmap_item *rmap_item;
1992 int ret = SWAP_AGAIN;
1993 int search_new_forks = 0;
1994
1995 VM_BUG_ON(!PageKsm(page));
1996 VM_BUG_ON(!PageLocked(page));
1997
1998 stable_node = page_stable_node(page);
1999 if (!stable_node)
2000 return ret;
2001again:
2002 hlist_for_each_entry(rmap_item, hlist, &stable_node->hlist, hlist) {
2003 struct anon_vma *anon_vma = rmap_item->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -08002004 struct anon_vma_chain *vmac;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002005 struct vm_area_struct *vma;
2006
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002007 anon_vma_lock_read(anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -07002008 anon_vma_interval_tree_foreach(vmac, &anon_vma->rb_root,
2009 0, ULONG_MAX) {
Rik van Riel5beb4932010-03-05 13:42:07 -08002010 vma = vmac->vma;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002011 if (rmap_item->address < vma->vm_start ||
2012 rmap_item->address >= vma->vm_end)
2013 continue;
2014 /*
2015 * Initially we examine only the vma which covers this
2016 * rmap_item; but later, if there is still work to do,
2017 * we examine covering vmas in other mms: in case they
2018 * were forked from the original since ksmd passed.
2019 */
2020 if ((rmap_item->mm == vma->vm_mm) == search_new_forks)
2021 continue;
2022
2023 ret = rmap_one(page, vma, rmap_item->address, arg);
2024 if (ret != SWAP_AGAIN) {
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002025 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002026 goto out;
2027 }
2028 }
Hugh Dickinsb6b19f22012-12-19 17:44:29 -08002029 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002030 }
2031 if (!search_new_forks++)
2032 goto again;
2033out:
2034 return ret;
2035}
2036
2037void ksm_migrate_page(struct page *newpage, struct page *oldpage)
2038{
2039 struct stable_node *stable_node;
2040
2041 VM_BUG_ON(!PageLocked(oldpage));
2042 VM_BUG_ON(!PageLocked(newpage));
2043 VM_BUG_ON(newpage->mapping != oldpage->mapping);
2044
2045 stable_node = page_stable_node(newpage);
2046 if (stable_node) {
Hugh Dickins62b61f62009-12-14 17:59:33 -08002047 VM_BUG_ON(stable_node->kpfn != page_to_pfn(oldpage));
2048 stable_node->kpfn = page_to_pfn(newpage);
Hugh Dickinsc8d65532013-02-22 16:35:10 -08002049 /*
2050 * newpage->mapping was set in advance; now we need smp_wmb()
2051 * to make sure that the new stable_node->kpfn is visible
2052 * to get_ksm_page() before it can see that oldpage->mapping
2053 * has gone stale (or that PageSwapCache has been cleared).
2054 */
2055 smp_wmb();
2056 set_page_stable_node(oldpage, NULL);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002057 }
2058}
2059#endif /* CONFIG_MIGRATION */
2060
Hugh Dickins62b61f62009-12-14 17:59:33 -08002061#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002062static int just_wait(void *word)
2063{
2064 schedule();
2065 return 0;
2066}
2067
2068static void wait_while_offlining(void)
2069{
2070 while (ksm_run & KSM_RUN_OFFLINE) {
2071 mutex_unlock(&ksm_thread_mutex);
2072 wait_on_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE),
2073 just_wait, TASK_UNINTERRUPTIBLE);
2074 mutex_lock(&ksm_thread_mutex);
2075 }
2076}
2077
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002078static void ksm_check_stable_tree(unsigned long start_pfn,
2079 unsigned long end_pfn)
Hugh Dickins62b61f62009-12-14 17:59:33 -08002080{
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002081 struct stable_node *stable_node;
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002082 struct list_head *this, *next;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002083 struct rb_node *node;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002084 int nid;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002085
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002086 for (nid = 0; nid < nr_node_ids; nid++) {
2087 node = rb_first(&root_stable_tree[nid]);
2088 while (node) {
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002089 stable_node = rb_entry(node, struct stable_node, node);
2090 if (stable_node->kpfn >= start_pfn &&
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002091 stable_node->kpfn < end_pfn) {
2092 /*
2093 * Don't get_ksm_page, page has already gone:
2094 * which is why we keep kpfn instead of page*
2095 */
2096 remove_node_from_stable_tree(stable_node);
2097 node = rb_first(&root_stable_tree[nid]);
2098 } else
2099 node = rb_next(node);
2100 cond_resched();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002101 }
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002102 }
Hugh Dickins4146d2d2013-02-22 16:35:11 -08002103 list_for_each_safe(this, next, &migrate_nodes) {
2104 stable_node = list_entry(this, struct stable_node, list);
2105 if (stable_node->kpfn >= start_pfn &&
2106 stable_node->kpfn < end_pfn)
2107 remove_node_from_stable_tree(stable_node);
2108 cond_resched();
2109 }
Hugh Dickins62b61f62009-12-14 17:59:33 -08002110}
2111
2112static int ksm_memory_callback(struct notifier_block *self,
2113 unsigned long action, void *arg)
2114{
2115 struct memory_notify *mn = arg;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002116
2117 switch (action) {
2118 case MEM_GOING_OFFLINE:
2119 /*
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002120 * Prevent ksm_do_scan(), unmerge_and_remove_all_rmap_items()
2121 * and remove_all_stable_nodes() while memory is going offline:
2122 * it is unsafe for them to touch the stable tree at this time.
2123 * But unmerge_ksm_pages(), rmap lookups and other entry points
2124 * which do not need the ksm_thread_mutex are all safe.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002125 */
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002126 mutex_lock(&ksm_thread_mutex);
2127 ksm_run |= KSM_RUN_OFFLINE;
2128 mutex_unlock(&ksm_thread_mutex);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002129 break;
2130
2131 case MEM_OFFLINE:
2132 /*
2133 * Most of the work is done by page migration; but there might
2134 * be a few stable_nodes left over, still pointing to struct
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002135 * pages which have been offlined: prune those from the tree,
2136 * otherwise get_ksm_page() might later try to access a
2137 * non-existent struct page.
Hugh Dickins62b61f62009-12-14 17:59:33 -08002138 */
Hugh Dickinsee0ea592013-02-22 16:35:05 -08002139 ksm_check_stable_tree(mn->start_pfn,
2140 mn->start_pfn + mn->nr_pages);
Hugh Dickins62b61f62009-12-14 17:59:33 -08002141 /* fallthrough */
2142
2143 case MEM_CANCEL_OFFLINE:
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002144 mutex_lock(&ksm_thread_mutex);
2145 ksm_run &= ~KSM_RUN_OFFLINE;
Hugh Dickins62b61f62009-12-14 17:59:33 -08002146 mutex_unlock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002147
2148 smp_mb(); /* wake_up_bit advises this */
2149 wake_up_bit(&ksm_run, ilog2(KSM_RUN_OFFLINE));
Hugh Dickins62b61f62009-12-14 17:59:33 -08002150 break;
2151 }
2152 return NOTIFY_OK;
2153}
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002154#else
2155static void wait_while_offlining(void)
2156{
2157}
Hugh Dickins62b61f62009-12-14 17:59:33 -08002158#endif /* CONFIG_MEMORY_HOTREMOVE */
2159
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002160#ifdef CONFIG_SYSFS
2161/*
2162 * This all compiles without CONFIG_SYSFS, but is a waste of space.
2163 */
2164
Izik Eidus31dbd012009-09-21 17:02:03 -07002165#define KSM_ATTR_RO(_name) \
2166 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
2167#define KSM_ATTR(_name) \
2168 static struct kobj_attribute _name##_attr = \
2169 __ATTR(_name, 0644, _name##_show, _name##_store)
2170
2171static ssize_t sleep_millisecs_show(struct kobject *kobj,
2172 struct kobj_attribute *attr, char *buf)
2173{
2174 return sprintf(buf, "%u\n", ksm_thread_sleep_millisecs);
2175}
2176
2177static ssize_t sleep_millisecs_store(struct kobject *kobj,
2178 struct kobj_attribute *attr,
2179 const char *buf, size_t count)
2180{
2181 unsigned long msecs;
2182 int err;
2183
2184 err = strict_strtoul(buf, 10, &msecs);
2185 if (err || msecs > UINT_MAX)
2186 return -EINVAL;
2187
2188 ksm_thread_sleep_millisecs = msecs;
2189
2190 return count;
2191}
2192KSM_ATTR(sleep_millisecs);
2193
2194static ssize_t pages_to_scan_show(struct kobject *kobj,
2195 struct kobj_attribute *attr, char *buf)
2196{
2197 return sprintf(buf, "%u\n", ksm_thread_pages_to_scan);
2198}
2199
2200static ssize_t pages_to_scan_store(struct kobject *kobj,
2201 struct kobj_attribute *attr,
2202 const char *buf, size_t count)
2203{
2204 int err;
2205 unsigned long nr_pages;
2206
2207 err = strict_strtoul(buf, 10, &nr_pages);
2208 if (err || nr_pages > UINT_MAX)
2209 return -EINVAL;
2210
2211 ksm_thread_pages_to_scan = nr_pages;
2212
2213 return count;
2214}
2215KSM_ATTR(pages_to_scan);
2216
2217static ssize_t run_show(struct kobject *kobj, struct kobj_attribute *attr,
2218 char *buf)
2219{
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002220 return sprintf(buf, "%lu\n", ksm_run);
Izik Eidus31dbd012009-09-21 17:02:03 -07002221}
2222
2223static ssize_t run_store(struct kobject *kobj, struct kobj_attribute *attr,
2224 const char *buf, size_t count)
2225{
2226 int err;
2227 unsigned long flags;
2228
2229 err = strict_strtoul(buf, 10, &flags);
2230 if (err || flags > UINT_MAX)
2231 return -EINVAL;
2232 if (flags > KSM_RUN_UNMERGE)
2233 return -EINVAL;
2234
2235 /*
2236 * KSM_RUN_MERGE sets ksmd running, and 0 stops it running.
2237 * KSM_RUN_UNMERGE stops it running and unmerges all rmap_items,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -08002238 * breaking COW to free the pages_shared (but leaves mm_slots
2239 * on the list for when ksmd may be set running again).
Izik Eidus31dbd012009-09-21 17:02:03 -07002240 */
2241
2242 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002243 wait_while_offlining();
Izik Eidus31dbd012009-09-21 17:02:03 -07002244 if (ksm_run != flags) {
2245 ksm_run = flags;
Hugh Dickinsd952b792009-09-21 17:02:16 -07002246 if (flags & KSM_RUN_UNMERGE) {
David Rientjese1e12d22012-12-11 16:02:56 -08002247 set_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002248 err = unmerge_and_remove_all_rmap_items();
David Rientjese1e12d22012-12-11 16:02:56 -08002249 clear_current_oom_origin();
Hugh Dickinsd952b792009-09-21 17:02:16 -07002250 if (err) {
2251 ksm_run = KSM_RUN_STOP;
2252 count = err;
2253 }
2254 }
Izik Eidus31dbd012009-09-21 17:02:03 -07002255 }
2256 mutex_unlock(&ksm_thread_mutex);
2257
2258 if (flags & KSM_RUN_MERGE)
2259 wake_up_interruptible(&ksm_thread_wait);
2260
2261 return count;
2262}
2263KSM_ATTR(run);
2264
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002265#ifdef CONFIG_NUMA
2266static ssize_t merge_across_nodes_show(struct kobject *kobj,
2267 struct kobj_attribute *attr, char *buf)
2268{
2269 return sprintf(buf, "%u\n", ksm_merge_across_nodes);
2270}
2271
2272static ssize_t merge_across_nodes_store(struct kobject *kobj,
2273 struct kobj_attribute *attr,
2274 const char *buf, size_t count)
2275{
2276 int err;
2277 unsigned long knob;
2278
2279 err = kstrtoul(buf, 10, &knob);
2280 if (err)
2281 return err;
2282 if (knob > 1)
2283 return -EINVAL;
2284
2285 mutex_lock(&ksm_thread_mutex);
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002286 wait_while_offlining();
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002287 if (ksm_merge_across_nodes != knob) {
Hugh Dickinscbf86cf2013-02-22 16:35:08 -08002288 if (ksm_pages_shared || remove_all_stable_nodes())
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002289 err = -EBUSY;
2290 else
2291 ksm_merge_across_nodes = knob;
2292 }
2293 mutex_unlock(&ksm_thread_mutex);
2294
2295 return err ? err : count;
2296}
2297KSM_ATTR(merge_across_nodes);
2298#endif
2299
Hugh Dickinsb4028262009-09-21 17:02:09 -07002300static ssize_t pages_shared_show(struct kobject *kobj,
2301 struct kobj_attribute *attr, char *buf)
2302{
2303 return sprintf(buf, "%lu\n", ksm_pages_shared);
2304}
2305KSM_ATTR_RO(pages_shared);
2306
2307static ssize_t pages_sharing_show(struct kobject *kobj,
2308 struct kobj_attribute *attr, char *buf)
2309{
Hugh Dickinse178dfd2009-09-21 17:02:10 -07002310 return sprintf(buf, "%lu\n", ksm_pages_sharing);
Hugh Dickinsb4028262009-09-21 17:02:09 -07002311}
2312KSM_ATTR_RO(pages_sharing);
2313
Hugh Dickins473b0ce2009-09-21 17:02:11 -07002314static ssize_t pages_unshared_show(struct kobject *kobj,
2315 struct kobj_attribute *attr, char *buf)
2316{
2317 return sprintf(buf, "%lu\n", ksm_pages_unshared);
2318}
2319KSM_ATTR_RO(pages_unshared);
2320
2321static ssize_t pages_volatile_show(struct kobject *kobj,
2322 struct kobj_attribute *attr, char *buf)
2323{
2324 long ksm_pages_volatile;
2325
2326 ksm_pages_volatile = ksm_rmap_items - ksm_pages_shared
2327 - ksm_pages_sharing - ksm_pages_unshared;
2328 /*
2329 * It was not worth any locking to calculate that statistic,
2330 * but it might therefore sometimes be negative: conceal that.
2331 */
2332 if (ksm_pages_volatile < 0)
2333 ksm_pages_volatile = 0;
2334 return sprintf(buf, "%ld\n", ksm_pages_volatile);
2335}
2336KSM_ATTR_RO(pages_volatile);
2337
2338static ssize_t full_scans_show(struct kobject *kobj,
2339 struct kobj_attribute *attr, char *buf)
2340{
2341 return sprintf(buf, "%lu\n", ksm_scan.seqnr);
2342}
2343KSM_ATTR_RO(full_scans);
2344
Izik Eidus31dbd012009-09-21 17:02:03 -07002345static struct attribute *ksm_attrs[] = {
2346 &sleep_millisecs_attr.attr,
2347 &pages_to_scan_attr.attr,
2348 &run_attr.attr,
Hugh Dickinsb4028262009-09-21 17:02:09 -07002349 &pages_shared_attr.attr,
2350 &pages_sharing_attr.attr,
Hugh Dickins473b0ce2009-09-21 17:02:11 -07002351 &pages_unshared_attr.attr,
2352 &pages_volatile_attr.attr,
2353 &full_scans_attr.attr,
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002354#ifdef CONFIG_NUMA
2355 &merge_across_nodes_attr.attr,
2356#endif
Izik Eidus31dbd012009-09-21 17:02:03 -07002357 NULL,
2358};
2359
2360static struct attribute_group ksm_attr_group = {
2361 .attrs = ksm_attrs,
2362 .name = "ksm",
2363};
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002364#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07002365
2366static int __init ksm_init(void)
2367{
2368 struct task_struct *ksm_thread;
2369 int err;
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002370 int nid;
Izik Eidus31dbd012009-09-21 17:02:03 -07002371
2372 err = ksm_slab_init();
2373 if (err)
2374 goto out;
2375
Petr Holasek90bd6fd2013-02-22 16:35:00 -08002376 for (nid = 0; nid < nr_node_ids; nid++)
2377 root_stable_tree[nid] = RB_ROOT;
2378
Izik Eidus31dbd012009-09-21 17:02:03 -07002379 ksm_thread = kthread_run(ksm_scan_thread, NULL, "ksmd");
2380 if (IS_ERR(ksm_thread)) {
2381 printk(KERN_ERR "ksm: creating kthread failed\n");
2382 err = PTR_ERR(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07002383 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07002384 }
2385
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002386#ifdef CONFIG_SYSFS
Izik Eidus31dbd012009-09-21 17:02:03 -07002387 err = sysfs_create_group(mm_kobj, &ksm_attr_group);
2388 if (err) {
2389 printk(KERN_ERR "ksm: register sysfs failed\n");
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002390 kthread_stop(ksm_thread);
Lai Jiangshand9f89842010-08-09 17:20:02 -07002391 goto out_free;
Izik Eidus31dbd012009-09-21 17:02:03 -07002392 }
Hugh Dickinsc73602a2009-10-07 16:32:22 -07002393#else
2394 ksm_run = KSM_RUN_MERGE; /* no way for user to start it */
2395
Hugh Dickins2ffd8672009-09-21 17:02:23 -07002396#endif /* CONFIG_SYSFS */
Izik Eidus31dbd012009-09-21 17:02:03 -07002397
Hugh Dickins62b61f62009-12-14 17:59:33 -08002398#ifdef CONFIG_MEMORY_HOTREMOVE
Hugh Dickinsef4d43a2013-02-22 16:35:16 -08002399 /* There is no significance to this priority 100 */
Hugh Dickins62b61f62009-12-14 17:59:33 -08002400 hotplug_memory_notifier(ksm_memory_callback, 100);
2401#endif
Izik Eidus31dbd012009-09-21 17:02:03 -07002402 return 0;
2403
Lai Jiangshand9f89842010-08-09 17:20:02 -07002404out_free:
Izik Eidus31dbd012009-09-21 17:02:03 -07002405 ksm_slab_free();
2406out:
2407 return err;
2408}
2409module_init(ksm_init)