share/mk/: Fix includes
[man-pages.git] / man2 / swapon.2
blobb2651fc39c07207534f49e7013cf31a587f067e6
1 .\" Copyright (c) 1992 Drew Eckhardt (drew@cs.colorado.edu), March 28, 1992
2 .\"
3 .\" SPDX-License-Identifier: Linux-man-pages-copyleft
4 .\"
5 .\" Modified by Michael Haardt <michael@moria.de>
6 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
7 .\" Modified 1995-07-22 by Michael Chastain <mec@duracef.shout.net>
8 .\" Modified 1995-07-23 by aeb
9 .\" Modified 1996-10-22 by Eric S. Raymond <esr@thyrsus.com>
10 .\" Modified 1998-09-08 by aeb
11 .\" Modified 2004-06-17 by Michael Kerrisk <mtk.manpages@gmail.com>
12 .\" Modified 2004-10-10 by aeb
13 .\" 2004-12-14 mtk, Anand Kumria: added new errors
14 .\" 2007-06-22 Ivana Varekova <varekova@redhat.com>, mtk
15 .\"     Update text describing limit on number of swap files.
16 .\" 2021-01-17 Alex Baranowski <alex@euro-linux.com>
17 .\"     Update information about available swap files decreased by
18 .\"     CONFIG_DEVICE_PRIVATE option.
19 .\"
20 .\" FIXME Linux 3.11 added SWAP_FLAG_DISCARD_ONCE and SWAP_FLAG_DISCARD_PAGES
21 .\"     commit dcf6b7ddd7df8965727746f89c59229b23180e5a
22 .\"     Author: Rafael Aquini <aquini@redhat.com>
23 .\"     Date:   Wed Jul 3 15:02:46 2013 -0700
24 .\"
25 .TH swapon 2 (date) "Linux man-pages (unreleased)"
26 .SH NAME
27 swapon, swapoff \- start/stop swapping to file/device
28 .SH LIBRARY
29 Standard C library
30 .RI ( libc ", " \-lc )
31 .SH SYNOPSIS
32 .nf
33 .B #include <sys/swap.h>
35 .BI "int swapon(const char *" path ", int " swapflags );
36 .BI "int swapoff(const char *" path );
37 .fi
38 .SH DESCRIPTION
39 .BR swapon ()
40 sets the swap area to the file or block device specified by
41 .IR path .
42 .BR swapoff ()
43 stops swapping to the file or block device specified by
44 .IR path .
46 If the
47 .B SWAP_FLAG_PREFER
48 flag is specified in the
49 .BR swapon ()
50 .I swapflags
51 argument, the new swap area will have a higher priority than default.
52 The priority is encoded within
53 .I swapflags
54 as:
56 .in +4n
57 .EX
58 .I "(prio << SWAP_FLAG_PRIO_SHIFT) & SWAP_FLAG_PRIO_MASK"
59 .EE
60 .in
62 If the
63 .B SWAP_FLAG_DISCARD
64 flag is specified in the
65 .BR swapon ()
66 .I swapflags
67 argument, freed swap pages will be discarded before they are reused,
68 if the swap device supports the discard or trim operation.
69 (This may improve performance on some Solid State Devices,
70 but often it does not.)
71 See also NOTES.
73 These functions may be used only by a privileged process (one having the
74 .B CAP_SYS_ADMIN
75 capability).
76 .SS Priority
77 Each swap area has a priority, either high or low.
78 The default priority is low.
79 Within the low-priority areas,
80 newer areas are even lower priority than older areas.
82 All priorities set with
83 .I swapflags
84 are high-priority, higher than default.
85 They may have any nonnegative value chosen by the caller.
86 Higher numbers mean higher priority.
88 Swap pages are allocated from areas in priority order,
89 highest priority first.
90 For areas with different priorities,
91 a higher-priority area is exhausted before using a lower-priority area.
92 If two or more areas have the same priority,
93 and it is the highest priority available,
94 pages are allocated on a round-robin basis between them.
96 As of Linux 1.3.6, the kernel usually follows these rules,
97 but there are exceptions.
98 .SH RETURN VALUE
99 On success, zero is returned.
100 On error, \-1 is returned, and
101 .I errno
102 is set to indicate the error.
103 .SH ERRORS
105 .B EBUSY
106 (for
107 .BR swapon ())
108 The specified
109 .I path
110 is already being used as a swap area.
112 .B EINVAL
113 The file
114 .I path
115 exists, but refers neither to a regular file nor to a block device;
117 .B EINVAL
118 .RB ( swapon ())
119 The indicated path does not contain a valid swap signature or
120 resides on an in-memory filesystem such as
121 .BR tmpfs (5).
123 .BR EINVAL " (since Linux 3.4)"
124 .RB ( swapon ())
125 An invalid flag value was specified in
126 .IR swapflags .
128 .B EINVAL
129 .RB ( swapoff ())
130 .I path
131 is not currently a swap area.
133 .B ENFILE
134 The system-wide limit on the total number of open files has been reached.
136 .B ENOENT
137 The file
138 .I path
139 does not exist.
141 .B ENOMEM
142 The system has insufficient memory to start swapping.
144 .B EPERM
145 The caller does not have the
146 .B CAP_SYS_ADMIN
147 capability.
148 Alternatively, the maximum number of swap files are already in use;
149 see NOTES below.
150 .SH STANDARDS
151 Linux.
152 .SH HISTORY
154 .I swapflags
155 argument was introduced in Linux 1.3.2.
156 .SH NOTES
157 The partition or path must be prepared with
158 .BR mkswap (8).
160 There is an upper limit on the number of swap files that may be used,
161 defined by the kernel constant
162 .BR MAX_SWAPFILES .
163 Before Linux 2.4.10,
164 .B MAX_SWAPFILES
165 has the value 8;
166 since Linux 2.4.10, it has the value 32.
167 Since Linux 2.6.18, the limit is decreased by 2 (thus 30),
168 since Linux 5.19, the limit is decreased by 3 (thus: 29)
169 if the kernel is built with the
170 .B CONFIG_MIGRATION
171 option
172 (which reserves two swap table entries for the page migration features of
173 .BR mbind (2)
175 .BR migrate_pages (2)).
176 Since Linux 2.6.32, the limit is further decreased by 1
177 if the kernel is built with the
178 .B CONFIG_MEMORY_FAILURE
179 option.
180 Since Linux 5.14, the limit is further decreased by 4
181 if the kernel is built with the
182 .B CONFIG_DEVICE_PRIVATE
183 option.
184 Since Linux 5.19, the limit is further decreased by 1
185 if the kernel is built with the
186 .B CONFIG_PTE_MARKER
187 option.
189 Discard of swap pages was introduced in Linux 2.6.29,
190 then made conditional
191 on the
192 .B SWAP_FLAG_DISCARD
193 flag in Linux 2.6.36,
194 .\" To be precise: 2.6.35.5
195 which still discards the
196 entire swap area when
197 .BR swapon ()
198 is called, even if that flag bit is not set.
199 .SH SEE ALSO
200 .BR mkswap (8),
201 .BR swapoff (8),
202 .BR swapon (8)