* small bug in unlink(2) manpage
@ 2011-08-11 8:17 Hendrik Jan Thomassen
[not found] ` <20110811081742.GA26403-2gAsihd9xRjpBEjGIDjKf0nExbqEVREo@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Hendrik Jan Thomassen @ 2011-08-11 8:17 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA
This is a report about a small bug in the manpage for the
unlink(2) system call. I found the bug in my Ubuntu 10.10
distribution; its Colophon says: "This page is part of
release 3.23 of the Linux man-pages project".
The bug is also present in the on-line manpages at
http://www.kernel.org/doc/man-pages/online_pages.html
The current version of the page says (under ERRORS):
> EBUSY (not on Linux)
> The file pathname cannot be unlinked because it is being
> used by the system or another process and the
> implementation considers this an error.
But if you look in the kernel source file fs/namei.c
at routine may_delete() you'll see two occasions where
an EBUSY is generated. So the above "not on Linux" is wrong.
I suggest that this '(not on Linux)' be removed. It may
also improve the page if the commentary is reworded to give a
better description of the two situations. Something along
the lines of:
> The file pathname cannot be unlinked because it is being used
> by the system, e.g. if some (relative) rootdir is mounted upon it,
> or because the NFS client software created it to represent an
> active but otherwise nameless inode ("NFS silly renamed").
Just FYI: the NFS silly rename (you'll find this term mentioned
in the kernel source code) is described at:
http://nfs.sourceforge.net/#section_d
under section D2. The reason I found this manpage bug is because
I stumbled upon one of these silly renamed files, and an strace
of the rm-command revealed the EBUSY return errno.
I am not a native English speaker, so my text can certainly
be improved upon.
Regards,
--
Hendrik-Jan Thomassen <hjt-Hf+EfML1qzhUecB6AVeNQA@public.gmane.org>
AT Computing
Linux/UNIXperts,
opleiders & oplossers Tel +31 24 352 72 82
Kerkenbos 1238 Tel cursussecretariaat: +31 24 352 72 72
6546 BE Nijmegen Fax +31 24 352 72 92
info-I2/4/b2VdYhUecB6AVeNQA@public.gmane.org www.atcomputing.nl
'If you think education is expensive, then try ignorance.'
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: small bug in unlink(2) manpage
[not found] ` <20110811081742.GA26403-2gAsihd9xRjpBEjGIDjKf0nExbqEVREo@public.gmane.org>
@ 2011-09-15 18:38 ` Michael Kerrisk
0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk @ 2011-09-15 18:38 UTC (permalink / raw)
To: Hendrik Jan Thomassen; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA
Hello Hendrik,
On Thu, Aug 11, 2011 at 10:17 AM, Hendrik Jan Thomassen
<hjt-I2/4/b2VdYhUecB6AVeNQA@public.gmane.org> wrote:
>
> This is a report about a small bug in the manpage for the
> unlink(2) system call. I found the bug in my Ubuntu 10.10
> distribution; its Colophon says: "This page is part of
> release 3.23 of the Linux man-pages project".
>
> The bug is also present in the on-line manpages at
> http://www.kernel.org/doc/man-pages/online_pages.html
>
> The current version of the page says (under ERRORS):
>
>> EBUSY (not on Linux)
>> The file pathname cannot be unlinked because it is being
>> used by the system or another process and the
>> implementation considers this an error.
>
> But if you look in the kernel source file fs/namei.c
> at routine may_delete() you'll see two occasions where
> an EBUSY is generated. So the above "not on Linux" is wrong.
>
> I suggest that this '(not on Linux)' be removed. It may
> also improve the page if the commentary is reworded to give a
> better description of the two situations. Something along
> the lines of:
>> The file pathname cannot be unlinked because it is being used
>> by the system, e.g. if some (relative) rootdir is mounted upon it,
>> or because the NFS client software created it to represent an
>> active but otherwise nameless inode ("NFS silly renamed").
>
> Just FYI: the NFS silly rename (you'll find this term mentioned
> in the kernel source code) is described at:
> http://nfs.sourceforge.net/#section_d
> under section D2. The reason I found this manpage bug is because
> I stumbled upon one of these silly renamed files, and an strace
> of the rm-command revealed the EBUSY return errno.
>
> I am not a native English speaker, so my text can certainly
> be improved upon.
Thanks very much for this report. For man-pages-3.33, I applied the
change below.
Cheers,
Michael
--- a/man2/unlink.2
+++ b/man2/unlink.2
@@ -69,11 +69,14 @@ did not allow search permission.
(See also
.BR path_resolution (7).)
.TP
-.BR EBUSY " (not on Linux)"
+.BR EBUSY
The file
.I pathname
cannot be unlinked because it is being used by the system
-or another process and the implementation considers this an error.
+or another process;
+for example, it is a mount point
+or the NFS client software created it to represent an
+active but otherwise nameless inode ("NFS silly renamed").
.TP
.B EFAULT
.I pathname
--
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Author of "The Linux Programming Interface"; http://man7.org/tlpi/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-09-15 18:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-11 8:17 small bug in unlink(2) manpage Hendrik Jan Thomassen
[not found] ` <20110811081742.GA26403-2gAsihd9xRjpBEjGIDjKf0nExbqEVREo@public.gmane.org>
2011-09-15 18:38 ` Michael Kerrisk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox