Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 May 2018 20:36:11 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333183 - head/sys/fs/nfsserver
Message-ID:  <201805022036.w42KaBw8070044@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++;



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