tmpfs.rst 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. .. SPDX-License-Identifier: GPL-2.0
  2. =====
  3. Tmpfs
  4. =====
  5. Tmpfs is a file system which keeps all of its files in virtual memory.
  6. Everything in tmpfs is temporary in the sense that no files will be
  7. created on your hard drive. If you unmount a tmpfs instance,
  8. everything stored therein is lost.
  9. tmpfs puts everything into the kernel internal caches and grows and
  10. shrinks to accommodate the files it contains and is able to swap
  11. unneeded pages out to swap space, if swap was enabled for the tmpfs
  12. mount. tmpfs also supports THP.
  13. tmpfs extends ramfs with a few userspace configurable options listed and
  14. explained further below, some of which can be reconfigured dynamically on the
  15. fly using a remount ('mount -o remount ...') of the filesystem. A tmpfs
  16. filesystem can be resized but it cannot be resized to a size below its current
  17. usage. tmpfs also supports POSIX ACLs, and extended attributes for the
  18. trusted.*, security.* and user.* namespaces. ramfs does not use swap and you
  19. cannot modify any parameter for a ramfs filesystem. The size limit of a ramfs
  20. filesystem is how much memory you have available, and so care must be taken if
  21. used so to not run out of memory.
  22. An alternative to tmpfs and ramfs is to use brd to create RAM disks
  23. (/dev/ram*), which allows you to simulate a block device disk in physical RAM.
  24. To write data you would just then need to create an regular filesystem on top
  25. this ramdisk. As with ramfs, brd ramdisks cannot swap. brd ramdisks are also
  26. configured in size at initialization and you cannot dynamically resize them.
  27. Contrary to brd ramdisks, tmpfs has its own filesystem, it does not rely on the
  28. block layer at all.
  29. Since tmpfs lives completely in the page cache and optionally on swap,
  30. all tmpfs pages will be shown as "Shmem" in /proc/meminfo and "Shared" in
  31. free(1). Notice that these counters also include shared memory
  32. (shmem, see ipcs(1)). The most reliable way to get the count is
  33. using df(1) and du(1).
  34. tmpfs has the following uses:
  35. 1) There is always a kernel internal mount which you will not see at
  36. all. This is used for shared anonymous mappings and SYSV shared
  37. memory.
  38. This mount does not depend on CONFIG_TMPFS. If CONFIG_TMPFS is not
  39. set, the user visible part of tmpfs is not built. But the internal
  40. mechanisms are always present.
  41. 2) glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
  42. POSIX shared memory (shm_open, shm_unlink). Adding the following
  43. line to /etc/fstab should take care of this::
  44. tmpfs /dev/shm tmpfs defaults 0 0
  45. Remember to create the directory that you intend to mount tmpfs on
  46. if necessary.
  47. This mount is _not_ needed for SYSV shared memory. The internal
  48. mount is used for that. (In the 2.3 kernel versions it was
  49. necessary to mount the predecessor of tmpfs (shm fs) to use SYSV
  50. shared memory.)
  51. 3) Some people (including me) find it very convenient to mount it
  52. e.g. on /tmp and /var/tmp and have a big swap partition. And now
  53. loop mounts of tmpfs files do work, so mkinitrd shipped by most
  54. distributions should succeed with a tmpfs /tmp.
  55. 4) And probably a lot more I do not know about :-)
  56. tmpfs has three mount options for sizing:
  57. ========= ============================================================
  58. size The limit of allocated bytes for this tmpfs instance. The
  59. default is half of your physical RAM without swap. If you
  60. oversize your tmpfs instances the machine will deadlock
  61. since the OOM handler will not be able to free that memory.
  62. nr_blocks The same as size, but in blocks of PAGE_SIZE.
  63. nr_inodes The maximum number of inodes for this instance. The default
  64. is half of the number of your physical RAM pages, or (on a
  65. machine with highmem) the number of lowmem RAM pages,
  66. whichever is the lower.
  67. ========= ============================================================
  68. These parameters accept a suffix k, m or g for kilo, mega and giga and
  69. can be changed on remount. The size parameter also accepts a suffix %
  70. to limit this tmpfs instance to that percentage of your physical RAM:
  71. the default, when neither size nor nr_blocks is specified, is size=50%
  72. If nr_blocks=0 (or size=0), blocks will not be limited in that instance;
  73. if nr_inodes=0, inodes will not be limited. It is generally unwise to
  74. mount with such options, since it allows any user with write access to
  75. use up all the memory on the machine; but enhances the scalability of
  76. that instance in a system with many CPUs making intensive use of it.
  77. If nr_inodes is not 0, that limited space for inodes is also used up by
  78. extended attributes: "df -i"'s IUsed and IUse% increase, IFree decreases.
  79. tmpfs blocks may be swapped out, when there is a shortage of memory.
  80. tmpfs has a mount option to disable its use of swap:
  81. ====== ===========================================================
  82. noswap Disables swap. Remounts must respect the original settings.
  83. By default swap is enabled.
  84. ====== ===========================================================
  85. tmpfs also supports Transparent Huge Pages which requires a kernel
  86. configured with CONFIG_TRANSPARENT_HUGEPAGE and with huge supported for
  87. your system (has_transparent_hugepage(), which is architecture specific).
  88. The mount options for this are:
  89. ================ ==============================================================
  90. huge=never Do not allocate huge pages. This is the default.
  91. huge=always Attempt to allocate huge page every time a new page is needed.
  92. huge=within_size Only allocate huge page if it will be fully within i_size.
  93. Also respect madvise(2) hints.
  94. huge=advise Only allocate huge page if requested with madvise(2).
  95. ================ ==============================================================
  96. See also Documentation/admin-guide/mm/transhuge.rst, which describes the
  97. sysfs file /sys/kernel/mm/transparent_hugepage/shmem_enabled: which can
  98. be used to deny huge pages on all tmpfs mounts in an emergency, or to
  99. force huge pages on all tmpfs mounts for testing.
  100. tmpfs also supports quota with the following mount options
  101. ======================== =================================================
  102. quota User and group quota accounting and enforcement
  103. is enabled on the mount. Tmpfs is using hidden
  104. system quota files that are initialized on mount.
  105. usrquota User quota accounting and enforcement is enabled
  106. on the mount.
  107. grpquota Group quota accounting and enforcement is enabled
  108. on the mount.
  109. usrquota_block_hardlimit Set global user quota block hard limit.
  110. usrquota_inode_hardlimit Set global user quota inode hard limit.
  111. grpquota_block_hardlimit Set global group quota block hard limit.
  112. grpquota_inode_hardlimit Set global group quota inode hard limit.
  113. ======================== =================================================
  114. None of the quota related mount options can be set or changed on remount.
  115. Quota limit parameters accept a suffix k, m or g for kilo, mega and giga
  116. and can't be changed on remount. Default global quota limits are taking
  117. effect for any and all user/group/project except root the first time the
  118. quota entry for user/group/project id is being accessed - typically the
  119. first time an inode with a particular id ownership is being created after
  120. the mount. In other words, instead of the limits being initialized to zero,
  121. they are initialized with the particular value provided with these mount
  122. options. The limits can be changed for any user/group id at any time as they
  123. normally can be.
  124. Note that tmpfs quotas do not support user namespaces so no uid/gid
  125. translation is done if quotas are enabled inside user namespaces.
  126. tmpfs has a mount option to set the NUMA memory allocation policy for
  127. all files in that instance (if CONFIG_NUMA is enabled) - which can be
  128. adjusted on the fly via 'mount -o remount ...'
  129. ======================== ==============================================
  130. mpol=default use the process allocation policy
  131. (see set_mempolicy(2))
  132. mpol=prefer:Node prefers to allocate memory from the given Node
  133. mpol=bind:NodeList allocates memory only from nodes in NodeList
  134. mpol=interleave prefers to allocate from each node in turn
  135. mpol=interleave:NodeList allocates from each node of NodeList in turn
  136. mpol=local prefers to allocate memory from the local node
  137. ======================== ==============================================
  138. NodeList format is a comma-separated list of decimal numbers and ranges,
  139. a range being two hyphen-separated decimal numbers, the smallest and
  140. largest node numbers in the range. For example, mpol=bind:0-3,5,7,9-15
  141. A memory policy with a valid NodeList will be saved, as specified, for
  142. use at file creation time. When a task allocates a file in the file
  143. system, the mount option memory policy will be applied with a NodeList,
  144. if any, modified by the calling task's cpuset constraints
  145. [See Documentation/admin-guide/cgroup-v1/cpusets.rst] and any optional flags,
  146. listed below. If the resulting NodeLists is the empty set, the effective
  147. memory policy for the file will revert to "default" policy.
  148. NUMA memory allocation policies have optional flags that can be used in
  149. conjunction with their modes. These optional flags can be specified
  150. when tmpfs is mounted by appending them to the mode before the NodeList.
  151. See Documentation/admin-guide/mm/numa_memory_policy.rst for a list of
  152. all available memory allocation policy mode flags and their effect on
  153. memory policy.
  154. ::
  155. =static is equivalent to MPOL_F_STATIC_NODES
  156. =relative is equivalent to MPOL_F_RELATIVE_NODES
  157. For example, mpol=bind=static:NodeList, is the equivalent of an
  158. allocation policy of MPOL_BIND | MPOL_F_STATIC_NODES.
  159. Note that trying to mount a tmpfs with an mpol option will fail if the
  160. running kernel does not support NUMA; and will fail if its nodelist
  161. specifies a node which is not online. If your system relies on that
  162. tmpfs being mounted, but from time to time runs a kernel built without
  163. NUMA capability (perhaps a safe recovery kernel), or with fewer nodes
  164. online, then it is advisable to omit the mpol option from automatic
  165. mount options. It can be added later, when the tmpfs is already mounted
  166. on MountPoint, by 'mount -o remount,mpol=Policy:NodeList MountPoint'.
  167. To specify the initial root directory you can use the following mount
  168. options:
  169. ==== ==================================
  170. mode The permissions as an octal number
  171. uid The user id
  172. gid The group id
  173. ==== ==================================
  174. These options do not have any effect on remount. You can change these
  175. parameters with chmod(1), chown(1) and chgrp(1) on a mounted filesystem.
  176. tmpfs has a mount option to select whether it will wrap at 32- or 64-bit inode
  177. numbers:
  178. ======= ========================
  179. inode64 Use 64-bit inode numbers
  180. inode32 Use 32-bit inode numbers
  181. ======= ========================
  182. On a 32-bit kernel, inode32 is implicit, and inode64 is refused at mount time.
  183. On a 64-bit kernel, CONFIG_TMPFS_INODE64 sets the default. inode64 avoids the
  184. possibility of multiple files with the same inode number on a single device;
  185. but risks glibc failing with EOVERFLOW once 33-bit inode numbers are reached -
  186. if a long-lived tmpfs is accessed by 32-bit applications so ancient that
  187. opening a file larger than 2GiB fails with EINVAL.
  188. So 'mount -t tmpfs -o size=10G,nr_inodes=10k,mode=700 tmpfs /mytmpfs'
  189. will give you tmpfs instance on /mytmpfs which can allocate 10GB
  190. RAM/SWAP in 10240 inodes and it is only accessible by root.
  191. :Author:
  192. Christoph Rohland <cr@sap.com>, 1.12.01
  193. :Updated:
  194. Hugh Dickins, 4 June 2007
  195. :Updated:
  196. KOSAKI Motohiro, 16 Mar 2010
  197. :Updated:
  198. Chris Down, 13 July 2020