svn commit: r335571 - head/sys/fs/nfs

Rick Macklem rmacklem at FreeBSD.org
Sat Jun 23 00:37:16 UTC 2018


Author: rmacklem
Date: Sat Jun 23 00:37:15 2018
New Revision: 335571
URL: https://svnweb.freebsd.org/changeset/base/335571

Log:
  Define ND_HASSLOTID needed by r335568.
  
  r335568 uses a flag called ND_HASSLOTID to indicate that the slotid is set,
  so it can free and invalidate it.
  This flag needs to be set, which will be done in a subsequent commit.
  
  MFC after:	2 weeks

Modified:
  head/sys/fs/nfs/nfs.h

Modified: head/sys/fs/nfs/nfs.h
==============================================================================
--- head/sys/fs/nfs/nfs.h	Fri Jun 22 23:52:20 2018	(r335570)
+++ head/sys/fs/nfs/nfs.h	Sat Jun 23 00:37:15 2018	(r335571)
@@ -681,6 +681,7 @@ struct nfsrv_descript {
 #define	ND_DSSERVER		0x40000000
 #define	ND_CURSTATEID		0x80000000
 #define	ND_SAVEDCURSTATEID	0x100000000
+#define	ND_HASSLOTID		0x200000000
 
 /*
  * ND_GSS should be the "or" of all GSS type authentications.


More information about the svn-src-all mailing list