Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] nfs4: don't map EACCESS and EPERM to EIO
@ 2023-06-08 14:49 Tigran Mkrtchyan
  2023-06-08 15:33 ` Trond Myklebust
  0 siblings, 1 reply; 6+ messages in thread
From: Tigran Mkrtchyan @ 2023-06-08 14:49 UTC (permalink / raw)
  To: trond.myklebust, anna; +Cc: linux-nfs, Tigran Mkrtchyan

the nfs4_map_errors function converts NFS specific errors to userland
errors. However, it ignores NFS4ERR_PERM and EPERM, which then get
mapped to EIO.

Signed-off-by: Tigran Mkrtchyan <tigran.mkrtchyan@desy.de>
---
 fs/nfs/nfs4proc.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index d3665390c4cb..795205fe4f30 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -171,12 +171,14 @@ static int nfs4_map_errors(int err)
 	case -NFS4ERR_LAYOUTTRYLATER:
 	case -NFS4ERR_RECALLCONFLICT:
 		return -EREMOTEIO;
+	case -NFS4ERR_PERM:
 	case -NFS4ERR_WRONGSEC:
 	case -NFS4ERR_WRONG_CRED:
 		return -EPERM;
 	case -NFS4ERR_BADOWNER:
 	case -NFS4ERR_BADNAME:
 		return -EINVAL;
+	case -NFS4ERR_ACCESS:
 	case -NFS4ERR_SHARE_DENIED:
 		return -EACCES;
 	case -NFS4ERR_MINOR_VERS_MISMATCH:
-- 
2.40.1


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

end of thread, other threads:[~2023-06-13  8:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-08 14:49 [PATCH] nfs4: don't map EACCESS and EPERM to EIO Tigran Mkrtchyan
2023-06-08 15:33 ` Trond Myklebust
     [not found]   ` <AD6C85BF-50F9-42BB-83E8-16BCE03D3CF1@desy.de>
2023-06-08 17:53     ` Trond Myklebust
2023-06-09 13:30       ` Mkrtchyan, Tigran
2023-06-09 14:00         ` Benjamin Coddington
2023-06-13  8:27           ` Mkrtchyan, Tigran

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