]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/delete_module.2
pipe.2: Note that 'pipefd' is left unchanged in the event of an error
[thirdparty/man-pages.git] / man2 / delete_module.2
index da5b74057623c86926fcb3def0da93ffba07cc30..daa15faa251d09daad6f70ed1c0431f1d8fab146 100644 (file)
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.TH DELETE_MODULE 2 2014-05-10 "Linux" "Linux Programmer's Manual"
+.TH DELETE_MODULE 2 2017-09-15 "Linux" "Linux Programmer's Manual"
 .SH NAME
 delete_module \- unload a kernel module
 .SH SYNOPSIS
 .nf
 .BI "int delete_module(const char *" name ", int " flags );
 .fi
-
+.PP
 .IR Note :
-No declaration of this function is provided in glibc headers; see NOTES.
+No declaration of this system call is provided in glibc headers; see NOTES.
 .SH DESCRIPTION
 The
 .BR delete_module ()
@@ -46,7 +46,7 @@ The
 argument is used to modify the behavior of the system call,
 as described below.
 This system call requires privilege.
-
+.PP
 Module removal is attempted according to the following rules:
 .IP 1. 4
 If there are other loaded modules that depend on
@@ -67,7 +67,7 @@ flag is always specified, and the
 flag may additionally be specified.
 .\"    O_TRUNC == KMOD_REMOVE_FORCE in kmod library
 .\"    O_NONBLOCK == KMOD_REMOVE_NOWAIT in kmod library
-
+.IP
 The various combinations for
 .I flags
 have the following effect:
@@ -106,7 +106,7 @@ By default, if a module has an
 .I init
 function but no
 .I exit
-function, then an attempt to remove the module will fail.
+function, then an attempt to remove the module fails.
 However, if
 .BR O_TRUNC
 was specified, this requirement is bypassed.
@@ -176,13 +176,14 @@ is Linux-specific.
 The
 .BR delete_module ()
 system call is not supported by glibc.
-No declaration is provided in glibc headers, but,
-through a quirk of history, glibc does export an ABI for this system call.
+No declaration is provided in glibc headers, but, through a quirk of history,
+glibc versions before 2.23 did export an ABI for this system call.
 Therefore, in order to employ this system call,
-it is sufficient to manually declare the interface in your code;
+it is (before glibc 2.23) sufficient to
+manually declare the interface in your code;
 alternatively, you can invoke the system call using
 .BR syscall (2).
-
+.PP
 The uninterruptible sleep that may occur if
 .BR O_NONBLOCK
 is omitted from
@@ -194,13 +195,13 @@ As at Linux 3.7, specifying
 is optional, but in future kernels it is likely to become mandatory.
 .SS Linux 2.4 and earlier
 In Linux 2.4 and earlier, the system call took only one argument:
-
+.PP
 .BI "   int delete_module(const char *" name );
-
+.PP
 If
 .I name
 is NULL, all unused modules marked auto-clean are removed.
-
+.PP
 Some further details of differences in the behavior of
 .BR delete_module ()
 in Linux 2.4 and earlier are