1 ============================
2 Transparent Hugepage Support
3 ============================
8 Performance critical computing applications dealing with large memory
9 working sets are already running on top of libhugetlbfs and in turn
10 hugetlbfs. Transparent HugePage Support (THP) is an alternative mean of
11 using huge pages for the backing of virtual memory with huge pages
12 that supports the automatic promotion and demotion of page sizes and
13 without the shortcomings of hugetlbfs.
15 Currently THP only works for anonymous memory mappings and tmpfs/shmem.
16 But in the future it can expand to other filesystems.
19 in the examples below we presume that the basic page size is 4K and
20 the huge page size is 2M, although the actual numbers may vary
21 depending on the CPU architecture.
23 The reason applications are running faster is because of two
24 factors. The first factor is almost completely irrelevant and it's not
25 of significant interest because it'll also have the downside of
26 requiring larger clear-page copy-page in page faults which is a
27 potentially negative effect. The first factor consists in taking a
28 single page fault for each 2M virtual region touched by userland (so
29 reducing the enter/exit kernel frequency by a 512 times factor). This
30 only matters the first time the memory is accessed for the lifetime of
31 a memory mapping. The second long lasting and much more important
32 factor will affect all subsequent accesses to the memory for the whole
33 runtime of the application. The second factor consist of two
36 1) the TLB miss will run faster (especially with virtualization using
37 nested pagetables but almost always also on bare metal without
40 2) a single TLB entry will be mapping a much larger amount of virtual
41 memory in turn reducing the number of TLB misses. With
42 virtualization and nested pagetables the TLB can be mapped of
43 larger size only if both KVM and the Linux guest are using
44 hugepages but a significant speedup already happens if only one of
45 the two is using hugepages just because of the fact the TLB miss is
48 THP can be enabled system wide or restricted to certain tasks or even
49 memory ranges inside task's address space. Unless THP is completely
50 disabled, there is ``khugepaged`` daemon that scans memory and
51 collapses sequences of basic pages into huge pages.
53 The THP behaviour is controlled via :ref:`sysfs <thp_sysfs>`
54 interface and using madvise(2) and prctl(2) system calls.
56 Transparent Hugepage Support maximizes the usefulness of free memory
57 if compared to the reservation approach of hugetlbfs by allowing all
58 unused memory to be used as cache or other movable (or even unmovable
59 entities). It doesn't require reservation to prevent hugepage
60 allocation failures to be noticeable from userland. It allows paging
61 and all other advanced VM features to be available on the
62 hugepages. It requires no modifications for applications to take
65 Applications however can be further optimized to take advantage of
66 this feature, like for example they've been optimized before to avoid
67 a flood of mmap system calls for every malloc(4k). Optimizing userland
68 is by far not mandatory and khugepaged already can take care of long
69 lived page allocations even for hugepage unaware applications that
70 deals with large amounts of memory.
72 In certain cases when hugepages are enabled system wide, application
73 may end up allocating more memory resources. An application may mmap a
74 large region but only touch 1 byte of it, in that case a 2M page might
75 be allocated instead of a 4k page for no good. This is why it's
76 possible to disable hugepages system-wide and to only have them inside
77 MADV_HUGEPAGE madvise regions.
79 Embedded systems should enable hugepages only inside madvise regions
80 to eliminate any risk of wasting any precious byte of memory and to
83 Applications that gets a lot of benefit from hugepages and that don't
84 risk to lose memory by using hugepages, should use
85 madvise(MADV_HUGEPAGE) on their critical mmapped regions.
95 Transparent Hugepage Support for anonymous memory can be entirely disabled
96 (mostly for debugging purposes) or only enabled inside MADV_HUGEPAGE
97 regions (to avoid the risk of consuming more memory resources) or enabled
98 system wide. This can be achieved with one of::
100 echo always >/sys/kernel/mm/transparent_hugepage/enabled
101 echo madvise >/sys/kernel/mm/transparent_hugepage/enabled
102 echo never >/sys/kernel/mm/transparent_hugepage/enabled
104 It's also possible to limit defrag efforts in the VM to generate
105 anonymous hugepages in case they're not immediately free to madvise
106 regions or to never try to defrag memory and simply fallback to regular
107 pages unless hugepages are immediately available. Clearly if we spend CPU
108 time to defrag memory, we would expect to gain even more by the fact we
109 use hugepages later instead of regular pages. This isn't always
110 guaranteed, but it may be more likely in case the allocation is for a
111 MADV_HUGEPAGE region.
115 echo always >/sys/kernel/mm/transparent_hugepage/defrag
116 echo defer >/sys/kernel/mm/transparent_hugepage/defrag
117 echo defer+madvise >/sys/kernel/mm/transparent_hugepage/defrag
118 echo madvise >/sys/kernel/mm/transparent_hugepage/defrag
119 echo never >/sys/kernel/mm/transparent_hugepage/defrag
122 means that an application requesting THP will stall on
123 allocation failure and directly reclaim pages and compact
124 memory in an effort to allocate a THP immediately. This may be
125 desirable for virtual machines that benefit heavily from THP
126 use and are willing to delay the VM start to utilise them.
129 means that an application will wake kswapd in the background
130 to reclaim pages and wake kcompactd to compact memory so that
131 THP is available in the near future. It's the responsibility
132 of khugepaged to then install the THP pages later.
135 will enter direct reclaim and compaction like ``always``, but
136 only for regions that have used madvise(MADV_HUGEPAGE); all
137 other regions will wake kswapd in the background to reclaim
138 pages and wake kcompactd to compact memory so that THP is
139 available in the near future.
142 will enter direct reclaim like ``always`` but only for regions
143 that are have used madvise(MADV_HUGEPAGE). This is the default
147 should be self-explanatory.
149 By default kernel tries to use huge zero page on read page fault to
150 anonymous mapping. It's possible to disable huge zero page by writing 0
151 or enable it back by writing 1::
153 echo 0 >/sys/kernel/mm/transparent_hugepage/use_zero_page
154 echo 1 >/sys/kernel/mm/transparent_hugepage/use_zero_page
156 Some userspace (such as a test program, or an optimized memory allocation
157 library) may want to know the size (in bytes) of a transparent hugepage::
159 cat /sys/kernel/mm/transparent_hugepage/hpage_pmd_size
161 khugepaged will be automatically started when
162 transparent_hugepage/enabled is set to "always" or "madvise, and it'll
163 be automatically shutdown if it's set to "never".
168 khugepaged runs usually at low frequency so while one may not want to
169 invoke defrag algorithms synchronously during the page faults, it
170 should be worth invoking defrag at least in khugepaged. However it's
171 also possible to disable defrag in khugepaged by writing 0 or enable
172 defrag in khugepaged by writing 1::
174 echo 0 >/sys/kernel/mm/transparent_hugepage/khugepaged/defrag
175 echo 1 >/sys/kernel/mm/transparent_hugepage/khugepaged/defrag
177 You can also control how many pages khugepaged should scan at each
180 /sys/kernel/mm/transparent_hugepage/khugepaged/pages_to_scan
182 and how many milliseconds to wait in khugepaged between each pass (you
183 can set this to 0 to run khugepaged at 100% utilization of one core)::
185 /sys/kernel/mm/transparent_hugepage/khugepaged/scan_sleep_millisecs
187 and how many milliseconds to wait in khugepaged if there's an hugepage
188 allocation failure to throttle the next allocation attempt::
190 /sys/kernel/mm/transparent_hugepage/khugepaged/alloc_sleep_millisecs
192 The khugepaged progress can be seen in the number of pages collapsed (note
193 that this counter may not be an exact count of the number of pages
194 collapsed, since "collapsed" could mean multiple things: (1) A PTE mapping
195 being replaced by a PMD mapping, or (2) All 4K physical pages replaced by
196 one 2M hugepage. Each may happen independently, or together, depending on
197 the type of memory and the failures that occur. As such, this value should
198 be interpreted roughly as a sign of progress, and counters in /proc/vmstat
199 consulted for more accurate accounting)::
201 /sys/kernel/mm/transparent_hugepage/khugepaged/pages_collapsed
205 /sys/kernel/mm/transparent_hugepage/khugepaged/full_scans
207 ``max_ptes_none`` specifies how many extra small pages (that are
208 not already mapped) can be allocated when collapsing a group
209 of small pages into one large page::
211 /sys/kernel/mm/transparent_hugepage/khugepaged/max_ptes_none
213 A higher value leads to use additional memory for programs.
214 A lower value leads to gain less thp performance. Value of
215 max_ptes_none can waste cpu time very little, you can
218 ``max_ptes_swap`` specifies how many pages can be brought in from
219 swap when collapsing a group of pages into a transparent huge page::
221 /sys/kernel/mm/transparent_hugepage/khugepaged/max_ptes_swap
223 A higher value can cause excessive swap IO and waste
224 memory. A lower value can prevent THPs from being
225 collapsed, resulting fewer pages being collapsed into
226 THPs, and lower memory access performance.
228 ``max_ptes_shared`` specifies how many pages can be shared across multiple
229 processes. Exceeding the number would block the collapse::
231 /sys/kernel/mm/transparent_hugepage/khugepaged/max_ptes_shared
233 A higher value may increase memory footprint for some workloads.
238 You can change the sysfs boot time defaults of Transparent Hugepage
239 Support by passing the parameter ``transparent_hugepage=always`` or
240 ``transparent_hugepage=madvise`` or ``transparent_hugepage=never``
241 to the kernel command line.
243 Hugepages in tmpfs/shmem
244 ========================
246 You can control hugepage allocation policy in tmpfs with mount option
247 ``huge=``. It can have following values:
250 Attempt to allocate huge pages every time we need a new page;
253 Do not allocate huge pages;
256 Only allocate huge page if it will be fully within i_size.
257 Also respect fadvise()/madvise() hints;
260 Only allocate huge pages if requested with fadvise()/madvise();
262 The default policy is ``never``.
264 ``mount -o remount,huge= /mountpoint`` works fine after mount: remounting
265 ``huge=never`` will not attempt to break up huge pages at all, just stop more
266 from being allocated.
268 There's also sysfs knob to control hugepage allocation policy for internal
269 shmem mount: /sys/kernel/mm/transparent_hugepage/shmem_enabled. The mount
270 is used for SysV SHM, memfds, shared anonymous mmaps (of /dev/zero or
271 MAP_ANONYMOUS), GPU drivers' DRM objects, Ashmem.
273 In addition to policies listed above, shmem_enabled allows two further
277 For use in emergencies, to force the huge option off from
280 Force the huge option on for all - very useful for testing;
282 Need of application restart
283 ===========================
285 The transparent_hugepage/enabled values and tmpfs mount option only affect
286 future behavior. So to make them effective you need to restart any
287 application that could have been using hugepages. This also applies to the
288 regions registered in khugepaged.
293 The number of anonymous transparent huge pages currently used by the
294 system is available by reading the AnonHugePages field in ``/proc/meminfo``.
295 To identify what applications are using anonymous transparent huge pages,
296 it is necessary to read ``/proc/PID/smaps`` and count the AnonHugePages fields
299 The number of file transparent huge pages mapped to userspace is available
300 by reading ShmemPmdMapped and ShmemHugePages fields in ``/proc/meminfo``.
301 To identify what applications are mapping file transparent huge pages, it
302 is necessary to read ``/proc/PID/smaps`` and count the FileHugeMapped fields
305 Note that reading the smaps file is expensive and reading it
306 frequently will incur overhead.
308 There are a number of counters in ``/proc/vmstat`` that may be used to
309 monitor how successfully the system is providing huge pages for use.
312 is incremented every time a huge page is successfully
313 allocated to handle a page fault.
316 is incremented by khugepaged when it has found
317 a range of pages to collapse into one huge page and has
318 successfully allocated a new huge page to store the data.
321 is incremented if a page fault fails to allocate
322 a huge page and instead falls back to using small pages.
324 thp_fault_fallback_charge
325 is incremented if a page fault fails to charge a huge page and
326 instead falls back to using small pages even though the
327 allocation was successful.
329 thp_collapse_alloc_failed
330 is incremented if khugepaged found a range
331 of pages that should be collapsed into one huge page but failed
335 is incremented every time a file huge page is successfully
339 is incremented if a file huge page is attempted to be allocated
340 but fails and instead falls back to using small pages.
342 thp_file_fallback_charge
343 is incremented if a file huge page cannot be charged and instead
344 falls back to using small pages even though the allocation was
348 is incremented every time a file huge page is mapped into
352 is incremented every time a huge page is split into base
353 pages. This can happen for a variety of reasons but a common
354 reason is that a huge page is old and is being reclaimed.
355 This action implies splitting all PMD the page mapped with.
357 thp_split_page_failed
358 is incremented if kernel fails to split huge
359 page. This can happen if the page was pinned by somebody.
361 thp_deferred_split_page
362 is incremented when a huge page is put onto split
363 queue. This happens when a huge page is partially unmapped and
364 splitting it would free up some memory. Pages on split queue are
365 going to be split under memory pressure.
368 is incremented every time a PMD split into table of PTEs.
369 This can happen, for instance, when application calls mprotect() or
370 munmap() on part of huge page. It doesn't split huge page, only
374 is incremented every time a huge zero page used for thp is
375 successfully allocated. Note, it doesn't count every map of
376 the huge zero page, only its allocation.
378 thp_zero_page_alloc_failed
379 is incremented if kernel fails to allocate
380 huge zero page and falls back to using small pages.
383 is incremented every time a huge page is swapout in one
384 piece without splitting.
387 is incremented if a huge page has to be split before swapout.
388 Usually because failed to allocate some continuous swap space
391 As the system ages, allocating huge pages may be expensive as the
392 system uses memory compaction to copy data around memory to free a
393 huge page for use. There are some counters in ``/proc/vmstat`` to help
394 monitor this overhead.
397 is incremented every time a process stalls to run
398 memory compaction so that a huge page is free for use.
401 is incremented if the system compacted memory and
402 freed a huge page for use.
405 is incremented if the system tries to compact memory
408 It is possible to establish how long the stalls were using the function
409 tracer to record how long was spent in __alloc_pages() and
410 using the mm_page_alloc tracepoint to identify which allocations were
413 Optimizing the applications
414 ===========================
416 To be guaranteed that the kernel will map a 2M page immediately in any
417 memory region, the mmap region has to be hugepage naturally
418 aligned. posix_memalign() can provide that guarantee.
423 You can use hugetlbfs on a kernel that has transparent hugepage
424 support enabled just fine as always. No difference can be noted in
425 hugetlbfs other than there will be less overall fragmentation. All
426 usual features belonging to hugetlbfs are preserved and
427 unaffected. libhugetlbfs will also work fine as usual.