delete_module.2: Small rewording of description of effect of O_TRUNC

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2012-11-08 13:44:13 +01:00
parent e64bdfcf3c
commit 35f6968001
1 changed files with 3 additions and 4 deletions

View File

@ -20,7 +20,7 @@
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH DELETE_MODULE 2 2012-10-24 "Linux" "Linux Programmer's Manual"
.TH DELETE_MODULE 2 2012-11-08 "Linux" "Linux Programmer's Manual"
.SH NAME
delete_module \- unload a kernel module
.SH SYNOPSIS
@ -100,12 +100,11 @@ The module is unloaded in the usual way.
The
.B O_TRUNC
flag has one further effect on the rules described above.
By default,
attempting to remove a module that has an
By default, if a module has an
.I init
function but no
.I exit
function fails.
function, then an attempt to remove the module will fail.
However, if
.BR O_TRUNC
was specified, this requirement is bypassed.