blob: 18d7c710a5f3e189717f32031432fc2eaeb85581 [file] [log] [blame]
Mike Rapoport2fcbc412018-03-21 21:22:27 +02001.. _ksm:
2
3=======================
4Kernel Samepage Merging
5=======================
Hugh Dickins7701c9c2009-09-21 17:02:24 -07006
Mike Rapoportdb12c002018-04-24 09:40:23 +03007Overview
8========
9
Hugh Dickins7701c9c2009-09-21 17:02:24 -070010KSM is a memory-saving de-duplication feature, enabled by CONFIG_KSM=y,
Mike Rapoport2fcbc412018-03-21 21:22:27 +020011added to the Linux kernel in 2.6.32. See ``mm/ksm.c`` for its implementation,
Hugh Dickins7701c9c2009-09-21 17:02:24 -070012and http://lwn.net/Articles/306704/ and http://lwn.net/Articles/330589/
13
Hugh Dickins7701c9c2009-09-21 17:02:24 -070014KSM was originally developed for use with KVM (where it was known as
15Kernel Shared Memory), to fit more virtual machines into physical memory,
16by sharing the data common between them. But it can be useful to any
17application which generates many instances of the same data.
18
Mike Rapoportdb12c002018-04-24 09:40:23 +030019The KSM daemon ksmd periodically scans those areas of user memory
20which have been registered with it, looking for pages of identical
21content which can be replaced by a single write-protected page (which
22is automatically copied if a process later wants to update its
23content). The amount of pages that KSM daemon scans in a single pass
24and the time between the passes are configured using :ref:`sysfs
25intraface <ksm_sysfs>`
26
Hugh Dickins7701c9c2009-09-21 17:02:24 -070027KSM only merges anonymous (private) pages, never pagecache (file) pages.
Hugh Dickinsd0f209f2009-12-14 17:59:34 -080028KSM's merged pages were originally locked into kernel memory, but can now
29be swapped out just like other user pages (but sharing is broken when they
30are swapped back in: ksmd must rediscover their identity and merge again).
Hugh Dickins7701c9c2009-09-21 17:02:24 -070031
Mike Rapoportdb12c002018-04-24 09:40:23 +030032Controlling KSM with madvise
33============================
34
Hugh Dickins7701c9c2009-09-21 17:02:24 -070035KSM only operates on those areas of address space which an application
36has advised to be likely candidates for merging, by using the madvise(2)
Mike Rapoportdb12c002018-04-24 09:40:23 +030037system call::
Hugh Dickins7701c9c2009-09-21 17:02:24 -070038
Mike Rapoportdb12c002018-04-24 09:40:23 +030039 int madvise(addr, length, MADV_MERGEABLE)
40
41The app may call
42
43::
44
45 int madvise(addr, length, MADV_UNMERGEABLE)
46
47to cancel that advice and restore unshared pages: whereupon KSM
48unmerges whatever it merged in that range. Note: this unmerging call
49may suddenly require more memory than is available - possibly failing
50with EAGAIN, but more probably arousing the Out-Of-Memory killer.
Hugh Dickins7701c9c2009-09-21 17:02:24 -070051
52If KSM is not configured into the running kernel, madvise MADV_MERGEABLE
53and MADV_UNMERGEABLE simply fail with EINVAL. If the running kernel was
54built with CONFIG_KSM=y, those calls will normally succeed: even if the
55the KSM daemon is not currently running, MADV_MERGEABLE still registers
56the range for whenever the KSM daemon is started; even if the range
57cannot contain any pages which KSM could actually merge; even if
58MADV_UNMERGEABLE is applied to a range which was never MADV_MERGEABLE.
59
David Rientjesdef5efe2017-02-24 14:58:47 -080060If a region of memory must be split into at least one new MADV_MERGEABLE
61or MADV_UNMERGEABLE region, the madvise may return ENOMEM if the process
Mike Rapoportdb12c002018-04-24 09:40:23 +030062will exceed ``vm.max_map_count`` (see Documentation/sysctl/vm.txt).
David Rientjesdef5efe2017-02-24 14:58:47 -080063
Hugh Dickins7701c9c2009-09-21 17:02:24 -070064Like other madvise calls, they are intended for use on mapped areas of
65the user address space: they will report ENOMEM if the specified range
66includes unmapped gaps (though working on the intervening mapped areas),
67and might fail with EAGAIN if not enough memory for internal structures.
68
69Applications should be considerate in their use of MADV_MERGEABLE,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -080070restricting its use to areas likely to benefit. KSM's scans may use a lot
71of processing power: some installations will disable KSM for that reason.
Hugh Dickins7701c9c2009-09-21 17:02:24 -070072
Mike Rapoportdb12c002018-04-24 09:40:23 +030073.. _ksm_sysfs:
74
75KSM daemon sysfs interface
76==========================
77
Mike Rapoport2fcbc412018-03-21 21:22:27 +020078The KSM daemon is controlled by sysfs files in ``/sys/kernel/mm/ksm/``,
Hugh Dickins7701c9c2009-09-21 17:02:24 -070079readable by all but writable only by root:
80
Mike Rapoport2fcbc412018-03-21 21:22:27 +020081pages_to_scan
Mike Rapoportdb12c002018-04-24 09:40:23 +030082 how many pages to scan before ksmd goes to sleep
83 e.g. ``echo 100 > /sys/kernel/mm/ksm/pages_to_scan``.
84
85 Default: 100 (chosen for demonstration purposes)
Hugh Dickins7701c9c2009-09-21 17:02:24 -070086
Mike Rapoport2fcbc412018-03-21 21:22:27 +020087sleep_millisecs
88 how many milliseconds ksmd should sleep before next scan
Mike Rapoportdb12c002018-04-24 09:40:23 +030089 e.g. ``echo 20 > /sys/kernel/mm/ksm/sleep_millisecs``
90
91 Default: 20 (chosen for demonstration purposes)
Hugh Dickins7701c9c2009-09-21 17:02:24 -070092
Mike Rapoport2fcbc412018-03-21 21:22:27 +020093merge_across_nodes
Mike Rapoportdb12c002018-04-24 09:40:23 +030094 specifies if pages from different NUMA nodes can be merged.
Mike Rapoport2fcbc412018-03-21 21:22:27 +020095 When set to 0, ksm merges only pages which physically reside
96 in the memory area of same NUMA node. That brings lower
97 latency to access of shared pages. Systems with more nodes, at
98 significant NUMA distances, are likely to benefit from the
99 lower latency of setting 0. Smaller systems, which need to
100 minimize memory usage, are likely to benefit from the greater
101 sharing of setting 1 (default). You may wish to compare how
102 your system performs under each setting, before deciding on
Mike Rapoportdb12c002018-04-24 09:40:23 +0300103 which to use. ``merge_across_nodes`` setting can be changed only
104 when there are no ksm shared pages in the system: set run 2 to
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200105 unmerge pages first, then to 1 after changing
Mike Rapoportdb12c002018-04-24 09:40:23 +0300106 ``merge_across_nodes``, to remerge according to the new setting.
107
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200108 Default: 1 (merging across nodes as in earlier releases)
Petr Holasek90bd6fd2013-02-22 16:35:00 -0800109
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200110run
Mike Rapoportdb12c002018-04-24 09:40:23 +0300111 * set to 0 to stop ksmd from running but keep merged pages,
112 * set to 1 to run ksmd e.g. ``echo 1 > /sys/kernel/mm/ksm/run``,
113 * set to 2 to stop ksmd and unmerge all pages currently merged, but
114 leave mergeable areas registered for next run.
115
116 Default: 0 (must be changed to 1 to activate KSM, except if
117 CONFIG_SYSFS is disabled)
Hugh Dickins7701c9c2009-09-21 17:02:24 -0700118
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200119use_zero_pages
120 specifies whether empty pages (i.e. allocated pages that only
121 contain zeroes) should be treated specially. When set to 1,
122 empty pages are merged with the kernel zero page(s) instead of
123 with each other as it would happen normally. This can improve
124 the performance on architectures with coloured zero pages,
125 depending on the workload. Care should be taken when enabling
126 this setting, as it can potentially degrade the performance of
127 KSM for some workloads, for example if the checksums of pages
128 candidate for merging match the checksum of an empty
129 page. This setting can be changed at any time, it is only
Mike Rapoportdb12c002018-04-24 09:40:23 +0300130 effective for pages merged after the change.
131
132 Default: 0 (normal KSM behaviour as in earlier releases)
Claudio Imbrendae86c59b2017-02-24 14:55:39 -0800133
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200134max_page_sharing
135 Maximum sharing allowed for each KSM page. This enforces a
Mike Rapoport6570c782018-04-24 09:40:25 +0300136 deduplication limit to avoid high latency for virtual memory
137 operations that involve traversal of the virtual mappings that
138 share the KSM page. The minimum value is 2 as a newly created
139 KSM page will have at least two sharers. The higher this value
140 the faster KSM will merge the memory and the higher the
141 deduplication factor will be, but the slower the worst case
142 virtual mappings traversal could be for any given KSM
143 page. Slowing down this traversal means there will be higher
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200144 latency for certain virtual memory operations happening during
145 swapping, compaction, NUMA balancing and page migration, in
146 turn decreasing responsiveness for the caller of those virtual
147 memory operations. The scheduler latency of other tasks not
Mike Rapoport6570c782018-04-24 09:40:25 +0300148 involved with the VM operations doing the virtual mappings
149 traversal is not affected by this parameter as these
150 traversals are always schedule friendly themselves.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700151
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200152stable_node_chains_prune_millisecs
Mike Rapoport2a695ca2018-04-24 09:40:26 +0300153 specifies how frequently KSM checks the metadata of the pages
154 that hit the deduplication limit for stale information.
155 Smaller milllisecs values will free up the KSM metadata with
156 lower latency, but they will make ksmd use more CPU during the
157 scan. It's a noop if not a single KSM page hit the
158 ``max_page_sharing`` yet.
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700159
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200160The effectiveness of KSM and MADV_MERGEABLE is shown in ``/sys/kernel/mm/ksm/``:
Hugh Dickins7701c9c2009-09-21 17:02:24 -0700161
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200162pages_shared
163 how many shared pages are being used
164pages_sharing
165 how many more sites are sharing them i.e. how much saved
166pages_unshared
167 how many pages unique but repeatedly checked for merging
168pages_volatile
169 how many pages changing too fast to be placed in a tree
170full_scans
171 how many times all mergeable areas have been scanned
172stable_node_chains
173 number of stable node chains allocated, this is effectively
Mike Rapoportdb12c002018-04-24 09:40:23 +0300174 the number of KSM pages that hit the ``max_page_sharing`` limit
Mike Rapoport2fcbc412018-03-21 21:22:27 +0200175stable_node_dups
176 number of stable node dups queued into the stable_node chains
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700177
Mike Rapoportdb12c002018-04-24 09:40:23 +0300178A high ratio of ``pages_sharing`` to ``pages_shared`` indicates good
179sharing, but a high ratio of ``pages_unshared`` to ``pages_sharing``
180indicates wasted effort. ``pages_volatile`` embraces several
181different kinds of activity, but a high proportion there would also
182indicate poor use of madvise MADV_MERGEABLE.
Hugh Dickins7701c9c2009-09-21 17:02:24 -0700183
Mike Rapoportdb12c002018-04-24 09:40:23 +0300184The maximum possible ``pages_sharing/pages_shared`` ratio is limited by the
185``max_page_sharing`` tunable. To increase the ratio ``max_page_sharing`` must
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700186be increased accordingly.
187
Mike Rapoportdb12c002018-04-24 09:40:23 +0300188The ``stable_node_dups/stable_node_chains`` ratio is also affected by the
189``max_page_sharing`` tunable, and an high ratio may indicate fragmentation
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700190in the stable_node dups, which could be solved by introducing
191fragmentation algorithms in ksmd which would refile rmap_items from
Mike Rapoportdb12c002018-04-24 09:40:23 +0300192one stable_node dup to another stable_node dup, in order to free up
Andrea Arcangeli2c653d02017-07-06 15:36:55 -0700193stable_node "dups" with few rmap_items in them, but that may increase
194the ksmd CPU usage and possibly slowdown the readonly computations on
195the KSM pages of the applications.
196
Mike Rapoport064fca32018-04-24 09:40:24 +0300197Design
198======
199
200Overview
201--------
202
203.. kernel-doc:: mm/ksm.c
204 :DOC: Overview
205
206Reverse mapping
207---------------
208KSM maintains reverse mapping information for KSM pages in the stable
209tree.
210
211If a KSM page is shared between less than ``max_page_sharing`` VMAs,
212the node of the stable tree that represents such KSM page points to a
213list of :c:type:`struct rmap_item` and the ``page->mapping`` of the
214KSM page points to the stable tree node.
215
216When the sharing passes this threshold, KSM adds a second dimension to
217the stable tree. The tree node becomes a "chain" that links one or
218more "dups". Each "dup" keeps reverse mapping information for a KSM
219page with ``page->mapping`` pointing to that "dup".
220
221Every "chain" and all "dups" linked into a "chain" enforce the
222invariant that they represent the same write protected memory content,
223even if each "dup" will be pointed by a different KSM page copy of
224that content.
225
226This way the stable tree lookup computational complexity is unaffected
227if compared to an unlimited list of reverse mappings. It is still
228enforced that there cannot be KSM page content duplicates in the
229stable tree itself.
230
Mike Rapoport6570c782018-04-24 09:40:25 +0300231The deduplication limit enforced by ``max_page_sharing`` is required
232to avoid the virtual memory rmap lists to grow too large. The rmap
233walk has O(N) complexity where N is the number of rmap_items
234(i.e. virtual mappings) that are sharing the page, which is in turn
235capped by ``max_page_sharing``. So this effectively spreads the linear
236O(N) computational complexity from rmap walk context over different
237KSM pages. The ksmd walk over the stable_node "chains" is also O(N),
238but N is the number of stable_node "dups", not the number of
239rmap_items, so it has not a significant impact on ksmd performance. In
240practice the best stable_node "dup" candidate will be kept and found
241at the head of the "dups" list.
242
243High values of ``max_page_sharing`` result in faster memory merging
244(because there will be fewer stable_node dups queued into the
245stable_node chain->hlist to check for pruning) and higher
246deduplication factor at the expense of slower worst case for rmap
247walks for any KSM page which can happen during swapping, compaction,
248NUMA balancing and page migration.
249
Mike Rapoport2a695ca2018-04-24 09:40:26 +0300250The whole list of stable_node "dups" linked in the stable_node
251"chains" is scanned periodically in order to prune stale stable_nodes.
252The frequency of such scans is defined by
253``stable_node_chains_prune_millisecs`` sysfs tunable.
254
Mike Rapoport064fca32018-04-24 09:40:24 +0300255Reference
256---------
257.. kernel-doc:: mm/ksm.c
258 :functions: mm_slot ksm_scan stable_node rmap_item
259
Mike Rapoportdb12c002018-04-24 09:40:23 +0300260--
Hugh Dickins7701c9c2009-09-21 17:02:24 -0700261Izik Eidus,
Hugh Dickinsd0f209f2009-12-14 17:59:34 -0800262Hugh Dickins, 17 Nov 2009