mount.2: Minor restructuring/rewording in ERRORS

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2016-06-04 10:46:36 -05:00
parent eac1e05005
commit 9e1ae4f847
1 changed files with 23 additions and 7 deletions

View File

@ -552,10 +552,14 @@ See the Linux kernel source code for details.
A component of a path was not searchable. A component of a path was not searchable.
(See also (See also
.BR path_resolution (7).) .BR path_resolution (7).)
Or, mounting a read-only filesystem was attempted without giving the .TP
.B EACCES
Mounting a read-only filesystem was attempted without giving the
.B MS_RDONLY .B MS_RDONLY
flag. flag.
Or, the block device .TP
.B EACCES
The block device
.I source .I source
is located on a filesystem mounted with the is located on a filesystem mounted with the
.B MS_NODEV .B MS_NODEV
@ -566,9 +570,15 @@ option.
.B EBUSY .B EBUSY
.I source .I source
is already mounted. is already mounted.
Or, it cannot be remounted read-only, .TP
.B EBUSY
.I source
cannot be remounted read-only,
because it still holds files open for writing. because it still holds files open for writing.
Or, it cannot be mounted on .TP
.B EBUSY
.I source
cannot be mounted on
.I target .I target
because because
.I target .I target
@ -581,13 +591,17 @@ One of the pointer arguments points outside the user address space.
.B EINVAL .B EINVAL
.I source .I source
had an invalid superblock. had an invalid superblock.
Or, a remount .TP
.B EINVAL
A remount operation
.RB ( MS_REMOUNT ) .RB ( MS_REMOUNT )
was attempted, but was attempted, but
.I source .I source
was not already mounted on was not already mounted on
.IR target . .IR target .
Or, a move .TP
.B EINVAL
A move operation
.RB ( MS_MOVE ) .RB ( MS_MOVE )
was attempted, but was attempted, but
.I source .I source
@ -620,7 +634,9 @@ An attempt was made to bind mount an unbindable mount.
.TP .TP
.B ELOOP .B ELOOP
Too many links encountered during pathname resolution. Too many links encountered during pathname resolution.
Or, a move was attempted, while .TP
.B ELOOP
A move operation was attempted, and
.I target .I target
is a descendant of is a descendant of
.IR source . .IR source .