hugetlbpage.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. The intent of this file is to give a brief summary of hugetlbpage support in
  2. the Linux kernel. This support is built on top of multiple page size support
  3. that is provided by most modern architectures. For example, i386
  4. architecture supports 4K and 4M (2M in PAE mode) page sizes, ia64
  5. architecture supports multiple page sizes 4K, 8K, 64K, 256K, 1M, 4M, 16M,
  6. 256M and ppc64 supports 4K and 16M. A TLB is a cache of virtual-to-physical
  7. translations. Typically this is a very scarce resource on processor.
  8. Operating systems try to make best use of limited number of TLB resources.
  9. This optimization is more critical now as bigger and bigger physical memories
  10. (several GBs) are more readily available.
  11. Users can use the huge page support in Linux kernel by either using the mmap
  12. system call or standard SYSV shared memory system calls (shmget, shmat).
  13. First the Linux kernel needs to be built with the CONFIG_HUGETLBFS
  14. (present under "File systems") and CONFIG_HUGETLB_PAGE (selected
  15. automatically when CONFIG_HUGETLBFS is selected) configuration
  16. options.
  17. The /proc/meminfo file provides information about the total number of
  18. persistent hugetlb pages in the kernel's huge page pool. It also displays
  19. information about the number of free, reserved and surplus huge pages and the
  20. default huge page size. The huge page size is needed for generating the
  21. proper alignment and size of the arguments to system calls that map huge page
  22. regions.
  23. The output of "cat /proc/meminfo" will include lines like:
  24. .....
  25. HugePages_Total: vvv
  26. HugePages_Free: www
  27. HugePages_Rsvd: xxx
  28. HugePages_Surp: yyy
  29. Hugepagesize: zzz kB
  30. where:
  31. HugePages_Total is the size of the pool of huge pages.
  32. HugePages_Free is the number of huge pages in the pool that are not yet
  33. allocated.
  34. HugePages_Rsvd is short for "reserved," and is the number of huge pages for
  35. which a commitment to allocate from the pool has been made,
  36. but no allocation has yet been made. Reserved huge pages
  37. guarantee that an application will be able to allocate a
  38. huge page from the pool of huge pages at fault time.
  39. HugePages_Surp is short for "surplus," and is the number of huge pages in
  40. the pool above the value in /proc/sys/vm/nr_hugepages. The
  41. maximum number of surplus huge pages is controlled by
  42. /proc/sys/vm/nr_overcommit_hugepages.
  43. /proc/filesystems should also show a filesystem of type "hugetlbfs" configured
  44. in the kernel.
  45. /proc/sys/vm/nr_hugepages indicates the current number of "persistent" huge
  46. pages in the kernel's huge page pool. "Persistent" huge pages will be
  47. returned to the huge page pool when freed by a task. A user with root
  48. privileges can dynamically allocate more or free some persistent huge pages
  49. by increasing or decreasing the value of 'nr_hugepages'.
  50. Pages that are used as huge pages are reserved inside the kernel and cannot
  51. be used for other purposes. Huge pages cannot be swapped out under
  52. memory pressure.
  53. Once a number of huge pages have been pre-allocated to the kernel huge page
  54. pool, a user with appropriate privilege can use either the mmap system call
  55. or shared memory system calls to use the huge pages. See the discussion of
  56. Using Huge Pages, below.
  57. The administrator can allocate persistent huge pages on the kernel boot
  58. command line by specifying the "hugepages=N" parameter, where 'N' = the
  59. number of huge pages requested. This is the most reliable method of
  60. allocating huge pages as memory has not yet become fragmented.
  61. Some platforms support multiple huge page sizes. To allocate huge pages
  62. of a specific size, one must precede the huge pages boot command parameters
  63. with a huge page size selection parameter "hugepagesz=<size>". <size> must
  64. be specified in bytes with optional scale suffix [kKmMgG]. The default huge
  65. page size may be selected with the "default_hugepagesz=<size>" boot parameter.
  66. When multiple huge page sizes are supported, /proc/sys/vm/nr_hugepages
  67. indicates the current number of pre-allocated huge pages of the default size.
  68. Thus, one can use the following command to dynamically allocate/deallocate
  69. default sized persistent huge pages:
  70. echo 20 > /proc/sys/vm/nr_hugepages
  71. This command will try to adjust the number of default sized huge pages in the
  72. huge page pool to 20, allocating or freeing huge pages, as required.
  73. On a NUMA platform, the kernel will attempt to distribute the huge page pool
  74. over all the set of allowed nodes specified by the NUMA memory policy of the
  75. task that modifies nr_hugepages. The default for the allowed nodes--when the
  76. task has default memory policy--is all on-line nodes with memory. Allowed
  77. nodes with insufficient available, contiguous memory for a huge page will be
  78. silently skipped when allocating persistent huge pages. See the discussion
  79. below of the interaction of task memory policy, cpusets and per node attributes
  80. with the allocation and freeing of persistent huge pages.
  81. The success or failure of huge page allocation depends on the amount of
  82. physically contiguous memory that is present in system at the time of the
  83. allocation attempt. If the kernel is unable to allocate huge pages from
  84. some nodes in a NUMA system, it will attempt to make up the difference by
  85. allocating extra pages on other nodes with sufficient available contiguous
  86. memory, if any.
  87. System administrators may want to put this command in one of the local rc
  88. init files. This will enable the kernel to allocate huge pages early in
  89. the boot process when the possibility of getting physical contiguous pages
  90. is still very high. Administrators can verify the number of huge pages
  91. actually allocated by checking the sysctl or meminfo. To check the per node
  92. distribution of huge pages in a NUMA system, use:
  93. cat /sys/devices/system/node/node*/meminfo | fgrep Huge
  94. /proc/sys/vm/nr_overcommit_hugepages specifies how large the pool of
  95. huge pages can grow, if more huge pages than /proc/sys/vm/nr_hugepages are
  96. requested by applications. Writing any non-zero value into this file
  97. indicates that the hugetlb subsystem is allowed to try to obtain that
  98. number of "surplus" huge pages from the kernel's normal page pool, when the
  99. persistent huge page pool is exhausted. As these surplus huge pages become
  100. unused, they are freed back to the kernel's normal page pool.
  101. When increasing the huge page pool size via nr_hugepages, any existing surplus
  102. pages will first be promoted to persistent huge pages. Then, additional
  103. huge pages will be allocated, if necessary and if possible, to fulfill
  104. the new persistent huge page pool size.
  105. The administrator may shrink the pool of persistent huge pages for
  106. the default huge page size by setting the nr_hugepages sysctl to a
  107. smaller value. The kernel will attempt to balance the freeing of huge pages
  108. across all nodes in the memory policy of the task modifying nr_hugepages.
  109. Any free huge pages on the selected nodes will be freed back to the kernel's
  110. normal page pool.
  111. Caveat: Shrinking the persistent huge page pool via nr_hugepages such that
  112. it becomes less than the number of huge pages in use will convert the balance
  113. of the in-use huge pages to surplus huge pages. This will occur even if
  114. the number of surplus pages it would exceed the overcommit value. As long as
  115. this condition holds--that is, until nr_hugepages+nr_overcommit_hugepages is
  116. increased sufficiently, or the surplus huge pages go out of use and are freed--
  117. no more surplus huge pages will be allowed to be allocated.
  118. With support for multiple huge page pools at run-time available, much of
  119. the huge page userspace interface in /proc/sys/vm has been duplicated in sysfs.
  120. The /proc interfaces discussed above have been retained for backwards
  121. compatibility. The root huge page control directory in sysfs is:
  122. /sys/kernel/mm/hugepages
  123. For each huge page size supported by the running kernel, a subdirectory
  124. will exist, of the form:
  125. hugepages-${size}kB
  126. Inside each of these directories, the same set of files will exist:
  127. nr_hugepages
  128. nr_hugepages_mempolicy
  129. nr_overcommit_hugepages
  130. free_hugepages
  131. resv_hugepages
  132. surplus_hugepages
  133. which function as described above for the default huge page-sized case.
  134. Interaction of Task Memory Policy with Huge Page Allocation/Freeing
  135. Whether huge pages are allocated and freed via the /proc interface or
  136. the /sysfs interface using the nr_hugepages_mempolicy attribute, the NUMA
  137. nodes from which huge pages are allocated or freed are controlled by the
  138. NUMA memory policy of the task that modifies the nr_hugepages_mempolicy
  139. sysctl or attribute. When the nr_hugepages attribute is used, mempolicy
  140. is ignored.
  141. The recommended method to allocate or free huge pages to/from the kernel
  142. huge page pool, using the nr_hugepages example above, is:
  143. numactl --interleave <node-list> echo 20 \
  144. >/proc/sys/vm/nr_hugepages_mempolicy
  145. or, more succinctly:
  146. numactl -m <node-list> echo 20 >/proc/sys/vm/nr_hugepages_mempolicy
  147. This will allocate or free abs(20 - nr_hugepages) to or from the nodes
  148. specified in <node-list>, depending on whether number of persistent huge pages
  149. is initially less than or greater than 20, respectively. No huge pages will be
  150. allocated nor freed on any node not included in the specified <node-list>.
  151. When adjusting the persistent hugepage count via nr_hugepages_mempolicy, any
  152. memory policy mode--bind, preferred, local or interleave--may be used. The
  153. resulting effect on persistent huge page allocation is as follows:
  154. 1) Regardless of mempolicy mode [see Documentation/vm/numa_memory_policy.txt],
  155. persistent huge pages will be distributed across the node or nodes
  156. specified in the mempolicy as if "interleave" had been specified.
  157. However, if a node in the policy does not contain sufficient contiguous
  158. memory for a huge page, the allocation will not "fallback" to the nearest
  159. neighbor node with sufficient contiguous memory. To do this would cause
  160. undesirable imbalance in the distribution of the huge page pool, or
  161. possibly, allocation of persistent huge pages on nodes not allowed by
  162. the task's memory policy.
  163. 2) One or more nodes may be specified with the bind or interleave policy.
  164. If more than one node is specified with the preferred policy, only the
  165. lowest numeric id will be used. Local policy will select the node where
  166. the task is running at the time the nodes_allowed mask is constructed.
  167. For local policy to be deterministic, the task must be bound to a cpu or
  168. cpus in a single node. Otherwise, the task could be migrated to some
  169. other node at any time after launch and the resulting node will be
  170. indeterminate. Thus, local policy is not very useful for this purpose.
  171. Any of the other mempolicy modes may be used to specify a single node.
  172. 3) The nodes allowed mask will be derived from any non-default task mempolicy,
  173. whether this policy was set explicitly by the task itself or one of its
  174. ancestors, such as numactl. This means that if the task is invoked from a
  175. shell with non-default policy, that policy will be used. One can specify a
  176. node list of "all" with numactl --interleave or --membind [-m] to achieve
  177. interleaving over all nodes in the system or cpuset.
  178. 4) Any task mempolicy specifed--e.g., using numactl--will be constrained by
  179. the resource limits of any cpuset in which the task runs. Thus, there will
  180. be no way for a task with non-default policy running in a cpuset with a
  181. subset of the system nodes to allocate huge pages outside the cpuset
  182. without first moving to a cpuset that contains all of the desired nodes.
  183. 5) Boot-time huge page allocation attempts to distribute the requested number
  184. of huge pages over all on-lines nodes with memory.
  185. Per Node Hugepages Attributes
  186. A subset of the contents of the root huge page control directory in sysfs,
  187. described above, will be replicated under each the system device of each
  188. NUMA node with memory in:
  189. /sys/devices/system/node/node[0-9]*/hugepages/
  190. Under this directory, the subdirectory for each supported huge page size
  191. contains the following attribute files:
  192. nr_hugepages
  193. free_hugepages
  194. surplus_hugepages
  195. The free_' and surplus_' attribute files are read-only. They return the number
  196. of free and surplus [overcommitted] huge pages, respectively, on the parent
  197. node.
  198. The nr_hugepages attribute returns the total number of huge pages on the
  199. specified node. When this attribute is written, the number of persistent huge
  200. pages on the parent node will be adjusted to the specified value, if sufficient
  201. resources exist, regardless of the task's mempolicy or cpuset constraints.
  202. Note that the number of overcommit and reserve pages remain global quantities,
  203. as we don't know until fault time, when the faulting task's mempolicy is
  204. applied, from which node the huge page allocation will be attempted.
  205. Using Huge Pages
  206. If the user applications are going to request huge pages using mmap system
  207. call, then it is required that system administrator mount a file system of
  208. type hugetlbfs:
  209. mount -t hugetlbfs \
  210. -o uid=<value>,gid=<value>,mode=<value>,size=<value>,nr_inodes=<value> \
  211. none /mnt/huge
  212. This command mounts a (pseudo) filesystem of type hugetlbfs on the directory
  213. /mnt/huge. Any files created on /mnt/huge uses huge pages. The uid and gid
  214. options sets the owner and group of the root of the file system. By default
  215. the uid and gid of the current process are taken. The mode option sets the
  216. mode of root of file system to value & 0777. This value is given in octal.
  217. By default the value 0755 is picked. The size option sets the maximum value of
  218. memory (huge pages) allowed for that filesystem (/mnt/huge). The size is
  219. rounded down to HPAGE_SIZE. The option nr_inodes sets the maximum number of
  220. inodes that /mnt/huge can use. If the size or nr_inodes option is not
  221. provided on command line then no limits are set. For size and nr_inodes
  222. options, you can use [G|g]/[M|m]/[K|k] to represent giga/mega/kilo. For
  223. example, size=2K has the same meaning as size=2048.
  224. While read system calls are supported on files that reside on hugetlb
  225. file systems, write system calls are not.
  226. Regular chown, chgrp, and chmod commands (with right permissions) could be
  227. used to change the file attributes on hugetlbfs.
  228. Also, it is important to note that no such mount command is required if the
  229. applications are going to use only shmat/shmget system calls or mmap with
  230. MAP_HUGETLB. Users who wish to use hugetlb page via shared memory segment
  231. should be a member of a supplementary group and system admin needs to
  232. configure that gid into /proc/sys/vm/hugetlb_shm_group. It is possible for
  233. same or different applications to use any combination of mmaps and shm*
  234. calls, though the mount of filesystem will be required for using mmap calls
  235. without MAP_HUGETLB. For an example of how to use mmap with MAP_HUGETLB see
  236. map_hugetlb.c.
  237. *******************************************************************
  238. /*
  239. * hugepage-shm: see Documentation/vm/hugepage-shm.c
  240. */
  241. *******************************************************************
  242. /*
  243. * hugepage-mmap: see Documentation/vm/hugepage-mmap.c
  244. */