Linux filesystem development
 help / color / mirror / Atom feed
* [PATCH] nfsd: map EBUSY for all operations
@ 2025-01-20 17:20 Amir Goldstein
  2025-01-20 17:28 ` Trond Myklebust
  0 siblings, 1 reply; 12+ messages in thread
From: Amir Goldstein @ 2025-01-20 17:20 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Jeff Layton, linux-fsdevel, linux-nfs

v4 client maps NFS4ERR_FILE_OPEN => EBUSY for all operations.

v4 server only maps EBUSY => NFS4ERR_FILE_OPEN for rmdir()/unlink()
although it is also possible to get EBUSY from rename() for the same
reason (victim is a local mount point).

Filesystems could return EBUSY for other operations, so just map it
in server for all operations.

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
---

Chuck,

I ran into this error with a FUSE filesystem and returns -EBUSY on open,
but I noticed that vfs can also return EBUSY at least for rename().

Thanks,
Amir.

 fs/nfsd/vfs.c | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index 29cb7b812d713..a61f99c081894 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -100,6 +100,7 @@ nfserrno (int errno)
 		{ nfserr_perm, -ENOKEY },
 		{ nfserr_no_grace, -ENOGRACE},
 		{ nfserr_io, -EBADMSG },
+		{ nfserr_file_open, -EBUSY},
 	};
 	int	i;
 
@@ -2006,14 +2007,7 @@ nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
 out_drop_write:
 	fh_drop_write(fhp);
 out_nfserr:
-	if (host_err == -EBUSY) {
-		/* name is mounted-on. There is no perfect
-		 * error status.
-		 */
-		err = nfserr_file_open;
-	} else {
-		err = nfserrno(host_err);
-	}
+	err = nfserrno(host_err);
 out:
 	return err;
 out_unlock:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2025-01-21 10:17 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-20 17:20 [PATCH] nfsd: map EBUSY for all operations Amir Goldstein
2025-01-20 17:28 ` Trond Myklebust
2025-01-20 18:21   ` Amir Goldstein
2025-01-20 18:45     ` Trond Myklebust
2025-01-20 19:14       ` Amir Goldstein
2025-01-20 19:29         ` Trond Myklebust
2025-01-20 19:44           ` Chuck Lever
2025-01-20 21:11           ` Amir Goldstein
2025-01-20 22:15             ` Trond Myklebust
2025-01-21 10:14               ` Amir Goldstein
2025-01-20 23:02             ` NeilBrown
2025-01-21 10:17               ` Amir Goldstein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox