svn commit: r333183 - head/sys/fs/nfsserver

Rick Macklem rmacklem at FreeBSD.org
Wed May 2 20:36:13 UTC 2018


Author: rmacklem
Date: Wed May  2 20:36:11 2018
New Revision: 333183
URL: https://svnweb.freebsd.org/changeset/base/333183

Log:
  Add two missing LIST_INIT()s.
  
  This patch adds two missing LIST_INIT()s. Found by inspection.
  In practice, these are currently no-ops, since the structure they are
  in is malloc'd with M_ZERO and all LIST_INIT does is set the pointer
  in the list head to NULL. (In other words, the M_ZERO has already
  correctly initialized it.)
  
  MFC after:	2 months

Modified:
  head/sys/fs/nfsserver/nfs_nfsdstate.c

Modified: head/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- head/sys/fs/nfsserver/nfs_nfsdstate.c	Wed May  2 20:22:03 2018	(r333182)
+++ head/sys/fs/nfsserver/nfs_nfsdstate.c	Wed May  2 20:36:11 2018	(r333183)
@@ -387,6 +387,7 @@ nfsrv_setclient(struct nfsrv_descript *nd, struct nfsc
 			LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_hash)
 				tstp->ls_clp = new_clp;
 		}
+		LIST_INIT(&new_clp->lc_session);
 		LIST_INSERT_HEAD(NFSCLIENTHASH(new_clp->lc_clientid), new_clp,
 		    lc_hash);
 		nfsstatsv1.srvclients++;
@@ -451,6 +452,7 @@ nfsrv_setclient(struct nfsrv_descript *nd, struct nfsc
 			LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_hash)
 				tstp->ls_clp = new_clp;
 		}
+		LIST_INIT(&new_clp->lc_session);
 		LIST_INSERT_HEAD(NFSCLIENTHASH(new_clp->lc_clientid), new_clp,
 		    lc_hash);
 		nfsstatsv1.srvclients++;


More information about the svn-src-head mailing list