]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/sys/swapon.2
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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 .\" 4. 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$
30 .\"
31 .Dd June 4, 1993
32 .Dt SWAPON 2
33 .Os
34 .Sh NAME
35 .Nm swapon , swapoff
36 .Nd control devices for interleaved paging/swapping
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In unistd.h
41 .Ft int
42 .Fn swapon "const char *special"
43 .Ft int
44 .Fn swapoff "const char *special"
45 .Sh DESCRIPTION
46 The
47 .Fn swapon
48 system call
49 makes the block device
50 .Fa special
51 available to the system for
52 allocation for paging and swapping.
53 The names of potentially
54 available devices are known to the system and defined at system
55 configuration time.
56 The size of the swap area on
57 .Fa special
58 is calculated at the time the device is first made available
59 for swapping.
60 .Pp
61 The
62 .Fn swapoff
63 system call disables paging and swapping on the given device.
64 All associated swap metadata are deallocated, and the device
65 is made available for other purposes.
66 .Sh RETURN VALUES
67 If an error has occurred, a value of -1 is returned and
68 .Va errno
69 is set to indicate the error.
70 .Sh ERRORS
71 Both
72 .Fn swapon
73 and
74 .Fn swapoff
75 can fail if:
76 .Bl -tag -width Er
77 .It Bq Er ENOTDIR
78 A component of the path prefix is not a directory.
79 .It Bq Er ENAMETOOLONG
80 A component of a pathname exceeded 255 characters,
81 or an entire path name exceeded 1023 characters.
82 .It Bq Er ENOENT
83 The named device does not exist.
84 .It Bq Er EACCES
85 Search permission is denied for a component of the path prefix.
86 .It Bq Er ELOOP
87 Too many symbolic links were encountered in translating the pathname.
88 .It Bq Er EPERM
89 The caller is not the super-user.
90 .It Bq Er EFAULT
91 The
92 .Fa special
93 argument
94 points outside the process's allocated address space.
95 .El
96 .Pp
97 Additionally,
98 .Fn swapon
99 can fail for the following reasons:
100 .Bl -tag -width Er
101 .It Bq Er EINVAL
102 The system has reached the boot-time limit on the number of
103 swap devices,
104 .Va vm.nswapdev .
105 .It Bq Er ENOTBLK
106 The
107 .Fa special
108 argument
109 is not a block device.
110 .It Bq Er EBUSY
111 The device specified by
112 .Fa special
113 has already
114 been made available for swapping
115 .It Bq Er ENXIO
116 The major device number of
117 .Fa special
118 is out of range (this indicates no device driver exists
119 for the associated hardware).
120 .It Bq Er EIO
121 An I/O error occurred while opening the swap device.
122 .El
123 .Pp
124 Lastly,
125 .Fn swapoff
126 can fail if:
127 .Bl -tag -width Er
128 .It Bq Er EINVAL
129 The system is not currently swapping to
130 .Fa special .
131 .It Bq Er ENOMEM
132 Not enough virtual memory is available to safely disable
133 paging and swapping to the given device.
134 .El
135 .Sh SEE ALSO
136 .Xr config 8 ,
137 .Xr swapon 8 ,
138 .Xr sysctl 8
139 .Sh HISTORY
140 The
141 .Fn swapon
142 system call appeared in
143 .Bx 4.0 .
144 The
145 .Fn swapoff
146 system call appeared in
147 .Fx 5.0 .