Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Jul 2018 22:53:37 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r336233 - stable/11/sys/fs/nfsserver
Message-ID:  <201807122253.w6CMrbwQ040686@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rmacklem
Date: Thu Jul 12 22:53:37 2018
New Revision: 336233
URL: https://svnweb.freebsd.org/changeset/base/336233

Log:
  MFC: r333579
  The NFSv4.1 server should return NFSERR_BACKCHANBUSY instead of NFS_OK.
  
  When an NFSv4.1 session is busy due to a callback being in progress,
  nfsrv_freesession() should return NFSERR_BACKCHANBUSY instead of NFS_OK.
  The only effect this has is that the DestroySession operation will report
  the failure for this case and this probably has little or no effect on a
  client. Spotted by inspection and no failures related to this have been
  reported.

Modified:
  stable/11/sys/fs/nfsserver/nfs_nfsdstate.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- stable/11/sys/fs/nfsserver/nfs_nfsdstate.c	Thu Jul 12 22:48:18 2018	(r336232)
+++ stable/11/sys/fs/nfsserver/nfs_nfsdstate.c	Thu Jul 12 22:53:37 2018	(r336233)
@@ -6010,7 +6010,7 @@ nfsrv_freesession(struct nfsdsession *sep, uint8_t *se
 		if (sep->sess_refcnt > 0) {
 			NFSUNLOCKSESSION(shp);
 			NFSUNLOCKSTATE();
-			return (0);
+			return (NFSERR_BACKCHANBUSY);
 		}
 		LIST_REMOVE(sep, sess_hash);
 		LIST_REMOVE(sep, sess_list);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807122253.w6CMrbwQ040686>