1997-05-07 18:19:54 +00:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1997 Doug Rabson
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
.\"
|
1999-08-28 00:22:10 +00:00
|
|
|
.\" $FreeBSD$
|
1997-05-07 18:19:54 +00:00
|
|
|
.\"
|
2006-02-27 22:48:58 +00:00
|
|
|
.Dd February 27, 2006
|
1997-05-07 18:19:54 +00:00
|
|
|
.Dt KLDUNLOAD 8
|
2001-07-10 11:04:34 +00:00
|
|
|
.Os
|
1997-05-07 18:19:54 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm kldunload
|
|
|
|
.Nd unload a file from the kernel
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 16:52:27 +00:00
|
|
|
.Nm
|
2005-01-10 16:17:34 +00:00
|
|
|
.Op Fl fv
|
2006-02-27 22:20:57 +00:00
|
|
|
.Fl i Ar id ...
|
2000-11-20 16:52:27 +00:00
|
|
|
.Nm
|
2005-01-10 16:17:34 +00:00
|
|
|
.Op Fl fv
|
1999-09-06 08:30:25 +00:00
|
|
|
.Op Fl n
|
2006-02-27 22:20:57 +00:00
|
|
|
.Ar name ...
|
1997-05-07 18:19:54 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility unloads a file which was previously loaded with
|
|
|
|
.Xr kldload 8 .
|
|
|
|
.Pp
|
1998-01-05 07:10:42 +00:00
|
|
|
The following options are available:
|
2005-01-10 16:17:34 +00:00
|
|
|
.Bl -tag -width ".Fl n Ar name"
|
2004-07-13 19:36:59 +00:00
|
|
|
.It Fl f
|
|
|
|
Force the unload.
|
2005-02-09 22:06:16 +00:00
|
|
|
This ignores error returns to
|
|
|
|
.Dv MOD_QUIESCE
|
|
|
|
from the module and implies
|
2004-07-13 19:36:59 +00:00
|
|
|
that the module should be unloaded even if it is currently in use.
|
|
|
|
The users are left to cope as best they can.
|
1997-05-07 18:19:54 +00:00
|
|
|
.It Fl v
|
|
|
|
Be more verbose.
|
|
|
|
.It Fl i Ar id
|
|
|
|
Unload the file with this ID.
|
|
|
|
.It Fl n Ar name
|
|
|
|
Unload the file with this name.
|
1999-09-06 08:30:25 +00:00
|
|
|
.It Ar name
|
|
|
|
Unload the file with this name.
|
1997-05-07 18:19:54 +00:00
|
|
|
.El
|
2005-01-17 07:44:44 +00:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
.Ex -std
|
1997-05-07 18:19:54 +00:00
|
|
|
.Sh SEE ALSO
|
1999-09-03 16:40:24 +00:00
|
|
|
.Xr kldunload 2 ,
|
1997-05-07 18:19:54 +00:00
|
|
|
.Xr kldload 8 ,
|
|
|
|
.Xr kldstat 8
|
1997-10-21 09:59:26 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2002-07-06 19:34:18 +00:00
|
|
|
utility first appeared in
|
1998-11-12 11:10:26 +00:00
|
|
|
.Fx 3.0 ,
|
|
|
|
replacing the
|
2007-02-13 17:06:15 +00:00
|
|
|
.Nm lkm
|
1998-11-12 11:10:26 +00:00
|
|
|
interface.
|
1998-03-19 07:46:04 +00:00
|
|
|
.Sh AUTHORS
|
|
|
|
.An Doug Rabson Aq dfr@FreeBSD.org
|