NetBSD/lib/libc/sys/swapctl.2

217 lines
5.5 KiB
Groff
Raw Normal View History

.\" $NetBSD: swapctl.2,v 1.5 1997/08/27 07:31:36 mikel Exp $
.\"
1997-06-20 09:47:58 +04:00
.\" Copyright (c) 1997 Matthew R. Green
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
1997-06-20 09:47:58 +04:00
.Dd June 20, 1997
.Dt SWAPCTL 2
1997-06-12 19:46:19 +04:00
.Os NetBSD
1993-03-21 12:45:37 +03:00
.Sh NAME
1997-06-12 19:46:19 +04:00
.Nm swapctl
.Nd modify swap configuration
1993-03-21 12:45:37 +03:00
.Sh SYNOPSIS
.Fd #include <unistd.h>
1997-06-13 02:39:15 +04:00
.Fd #include <vm/vm_swap.h>
1993-03-21 12:45:37 +03:00
.Ft int
1997-06-12 19:46:19 +04:00
.Fn swapctl "int cmd" "const void *arg" "int misc"
1997-06-13 02:39:15 +04:00
.Fn swapon "const char *name"
.Sh DESCRIPTION
The
.Nm
function is used to add and delete swap devices, and modify their
configuration. The
.Fn swapon
function is only retained as a backwards compatibility feature;
it should never be used in new code, and should be
removed from existing code.
1997-06-20 09:47:58 +04:00
.Pp
The
.Fa cmd
parameter specifies the operation to be performed. The
1997-06-20 09:47:58 +04:00
.Fa arg
and
.Fa misc
parameters have different meanings, depending on the
.Fa cmd
parameter.
.Bl -item -offset indent
.It
If
.Fa cmd
is
.Dv SWAP_NSWAP ,
the current number of swap devices in the system is returned. The
.Fa arg
and
.Fa misc
parameters are ignored.
.It
If
.Fa cmd
is
.Dv SWAP_STATS ,
the current statistics for swap devices are returned in the
.Fa arg
parameter. No more than
.Fa misc
swap devices are returned. The
.Fa arg
parameter should point to an array of at least
.Fa misc
struct swapent structures:
.Bd -literal
struct swapent {
dev_t se_dev;
int se_flags;
int se_nblks;
int se_inuse;
int se_priority;
};
.Ed
.It
If
.Fa cmd
is
.Dv SWAP_ON ,
the
.Fa arg
parameter is used as a pathname of a file to enable swapping to.
The
.Fa misc
parameter is used to set the priority of this swap device.
.It
If
.Fa cmd
is
.Dv SWAP_OFF ,
the
.Fa arg
parameter is used as the pathname of a file to disable swapping from.
The
.Fa misc
parameter is ignored.
.It
If
.Fa cmd
is
.Dv SWAP_CTL ,
the
.Fa arg
and
.Fa misc
parameters have the same function as for the
.Dv SWAP_ON
case, except that they change the priority of a currently enabled swap device.
1997-06-20 09:47:58 +04:00
.El
.Sh RETURN VALUES
If the
.Fa cmd
parameter is
.Dv SWAP_NSTATS
or
.Dv SWAP_STATS ,
.Fn swapctl
returns the number of swap devices, if successful. The
.Dv SWAP_NSTATS
command is always successful. Otherwise it returns 0 on success and -1
on failure, setting the global variable
.Va errno
to indicate the error.
.Sh ERRORS
.Fn swapctl
succeeds unless:
.Bl -tag -width Er
.It Bq Er ENOTDIR
A component of the path prefix is not a directory.
.It Bq Er ENAMETOOLONG
A component of a pathname exceeded
.Dv NAME_MAX
characters, or an entire path name exceeded
.Dv PATH_MAX
characters.
.It Bq Er ENOENT
The named device does not exist. For the
.Dv SWAP_CTL
command, the named device is not currently enabled for swapping.
.It Bq Er EACCES
Search permission is denied for a component of the path prefix.
.It Bq Er ELOOP
Too many symbolic links were encountered in translating the pathname.
.It Bq Er EPERM
The caller is not the super-user.
.It Bq Er EBUSY
The device specified by
.Fa arg
has already been made available for swapping.
1997-06-20 09:47:58 +04:00
.It Bq Er EINVAL
The device configured by
.Fa arg
has no associated size, or the
.Fa cmd
was unknown.
.It Bq Er ENXIO
The major device number of
.Fa arg
is out of range (this indicates no device driver exists
for the associated hardware).
.It Bq Er EIO
An I/O error occurred while opening the swap device.
.It Bq Er EFAULT
.Fa arg
points outside the process' allocated address space.
1993-03-21 12:45:37 +03:00
.Sh SEE ALSO
1997-06-12 19:46:19 +04:00
.Xr swapctl 8 ,
1993-03-21 12:45:37 +03:00
.Xr config 8
.Sh BUGS
1997-06-20 09:47:58 +04:00
The
.Dv SWAP_OFF
command is currently unimplemented by the
.Nx
kernel.
.Sh AUTHOR
The current swap system was designed and implemented by Matthew Green
<mrg@eterna.com.au>, with help from Paul Kranenburg <pk@NetBSD.ORG>
and Leo Weppelman <leo@NetBSD.ORG>, and insights from Jason R. Thorpe
<thorpej@NetBSD.ORG>.
1993-03-21 12:45:37 +03:00
.Sh HISTORY
The
1997-06-12 19:46:19 +04:00
.Fn swapctl
1993-03-21 12:45:37 +03:00
function call appeared in
1997-06-12 19:46:19 +04:00
.Nx 1.3 .
.Pp
The
.Fn swapon
function call appeared in
.Bx 4.0
and was dropped in
.Nx 1.3 .