Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / lib / libc / sys / swapon.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)swapon.2    8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD: src/lib/libc/sys/swapon.2,v 1.6.2.6 2001/12/14 18:34:01 ru Exp $
30 .\" $DragonFly: src/lib/libc/sys/swapon.2,v 1.3 2006/02/17 19:35:06 swildner Exp $
31 .\"
32 .Dd September 7, 2010
33 .Dt SWAPON 2
34 .Os
35 .Sh NAME
36 .Nm swapon , swapoff
37 .Nd control devices for interleaved paging/swapping
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In unistd.h
42 .Ft int
43 .Fn swapon "const char *special"
44 .Ft int
45 .Fn swapoff "const char *special"
46 .Sh DESCRIPTION
47 The
48 .Fn swapon
49 system call
50 makes the block device
51 .Fa special
52 available to the system for
53 allocation for paging and swapping.
54 The names of potentially
55 available devices are known to the system and defined at system
56 configuration time.
57 The size of the swap area on
58 .Fa special
59 is calculated at the time the device is first made available
60 for swapping.
61 .Pp
62 The
63 .Fn swapoff
64 system call disables paging and swapping on the given device.
65 All associated swap metadata are deallocated, and the device
66 is made available for other purposes.
67 .Sh RETURN VALUES
68 If an error has occurred, a value of -1 is returned and
69 .Va errno
70 is set to indicate the error.
71 .Sh ERRORS
72 Both
73 .Fn swapon
74 and
75 .Fn swapoff
76 can fail if:
77 .Bl -tag -width Er
78 .It Bq Er ENOTDIR
79 A component of the path prefix is not a directory.
80 .It Bq Er ENAMETOOLONG
81 A component of a pathname exceeded 255 characters,
82 or an entire path name exceeded 1023 characters.
83 .It Bq Er ENOENT
84 The named device does not exist.
85 .It Bq Er EACCES
86 Search permission is denied for a component of the path prefix.
87 .It Bq Er ELOOP
88 Too many symbolic links were encountered in translating the pathname.
89 .It Bq Er EPERM
90 The caller is not the super-user.
91 .It Bq Er EFAULT
92 The
93 .Fa special
94 argument
95 points outside the process's allocated address space.
96 .El
97 .Pp
98 Additionally,
99 .Fn swapon
100 can fail for the following reasons:
101 .Bl -tag -width Er
102 .It Bq Er EINVAL
103 The system has reached the boot-time limit on the number of
104 swap devices,
105 .Va vm.nswapdev .
106 .It Bq Er ENOTBLK
107 The
108 .Fa special
109 argument
110 is not a block device.
111 .It Bq Er EBUSY
112 The device specified by
113 .Fa special
114 has already
115 been made available for swapping
116 .It Bq Er ENXIO
117 The major device number of
118 .Fa special
119 is out of range (this indicates no device driver exists
120 for the associated hardware).
121 .It Bq Er EIO
122 An I/O error occurred while opening the swap device.
123 .El
124 .Pp
125 Lastly,
126 .Fn swapoff
127 can fail if:
128 .Bl -tag -width Er
129 .It Bq Er EINVAL
130 The system is not currently swapping to
131 .Fa special .
132 .It Bq Er ENOMEM
133 Not enough virtual memory is available to safely disable
134 paging and swapping to the given device.
135 .El
136 .Sh SEE ALSO
137 .Xr config 8 ,
138 .Xr swapon 8 ,
139 .Xr sysctl 8
140 .Sh HISTORY
141 The
142 .Fn swapon
143 system call appeared in
144 .Bx 4.0 .
145 The
146 .Fn swapoff
147 system call appeared in
148 .Fx 5.0
149 and was later ported to
150 .Dx 2.7 .