From cd14665295b1248f0a8919e02d36bcd651b5050c Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Tue, 19 Dec 2017 14:47:08 +0100 Subject: [PATCH] fuse.4: Places errors in alphabetical order (no content changes) Signed-off-by: Michael Kerrisk --- man4/fuse.4 | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/man4/fuse.4 b/man4/fuse.4 index 35e34d712..ffbe0ca07 100644 --- a/man4/fuse.4 +++ b/man4/fuse.4 @@ -469,10 +469,21 @@ For the interpretation of these fields, see .BR statfs (2). .SH ERRORS .TP -.B EPERM -Returned from operations on a -.I /dev/fuse -file descriptor that has not been mounted. +.B E2BIG +Returned from +.BR read (2) +operations when the kernel's request is too large for the provided buffer +and the request was +.BR FUSE_SETXATTR . +.TP +.B EINVAL +Returned from +.BR write (2) +if validation of the reply failed. +Not all mistakes in replies will be caught by this validation. +However, basic mistakes, such as short replies or an incorrect +.I unique +value, are detected. .TP .B EIO Returned from @@ -493,28 +504,17 @@ for an inode that has previously been reported to the kernel; or giving replies to the kernel that are shorter than what the kernel expected. .RE .TP -.B EINVAL -Returned from -.BR write (2) -if validation of the reply failed. -Not all mistakes in replies will be caught by this validation. -However, basic mistakes, such as short replies or an incorrect -.I unique -value, are detected. -.TP -.B E2BIG -Returned from -.BR read (2) -operations when the kernel's request is too large for the provided buffer -and the request was -.BR FUSE_SETXATTR . -.TP .B ENODEV Returned from .BR read (2) and .BR write (2) if the FUSE filesystem was unmounted. +.TP +.B EPERM +Returned from operations on a +.I /dev/fuse +file descriptor that has not been mounted. .SH CONFORMING TO The FUSE filesystem is Linux-specific. .SH NOTES