public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next v2] NFSD: Fix error return code in nfsd4_interssc_connect()
@ 2021-06-04 10:12 Wei Yongjun
  2021-06-04 14:40 ` J. Bruce Fields
  0 siblings, 1 reply; 4+ messages in thread
From: Wei Yongjun @ 2021-06-04 10:12 UTC (permalink / raw)
  To: weiyongjun1, J. Bruce Fields, Chuck Lever, Dai Ngo
  Cc: linux-nfs, kernel-janitors, Hulk Robot

'status' has been overwritten to 0 after nfsd4_ssc_setup_dul(), this
cause 0 will be return in vfs_kern_mount() error case. Fix to return
nfserr_nodev in this error.

Fixes: f4e44b393389 ("NFSD: delay unmount source's export after inter-server copy completed.")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
v1 -> v2: change to return nfserr_nodev
---
 fs/nfsd/nfs4proc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
index 0bd71c6da81d..b082cbde3e07 100644
--- a/fs/nfsd/nfs4proc.c
+++ b/fs/nfsd/nfs4proc.c
@@ -1323,6 +1323,7 @@ nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp,
 	ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data);
 	module_put(type->owner);
 	if (IS_ERR(ss_mnt)) {
+		status = nfserr_nodev;
 		if (work)
 			nfsd4_ssc_cancel_dul_work(nn, work);
 		goto out_free_devname;


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

end of thread, other threads:[~2021-06-04 17:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-04 10:12 [PATCH -next v2] NFSD: Fix error return code in nfsd4_interssc_connect() Wei Yongjun
2021-06-04 14:40 ` J. Bruce Fields
2021-06-04 16:36   ` dai.ngo
2021-06-04 17:30     ` J. Bruce Fields

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