Author: rmacklem
Date: Sat Jan 28 01:45:19 2012
New Revision: 230637
URL: http://svn.freebsd.org/changeset/base/230637

Log:
  MFC: r230100
  Tai Horgan reported via email that there were two places in
  the new NFSv4 server where the code follows the wrong list.
  Fortunately, for these fairly rare cases, the lc_stateid[]
  lists are normally empty. This patch fixes the code to
  follow the correct list.

Modified:
  stable/9/sys/fs/nfsserver/nfs_nfsdstate.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/amd64/include/xen/   (props changed)
  stable/9/sys/boot/   (props changed)
  stable/9/sys/boot/i386/efi/   (props changed)
  stable/9/sys/boot/ia64/efi/   (props changed)
  stable/9/sys/boot/ia64/ski/   (props changed)
  stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
  stable/9/sys/boot/powerpc/ofw/   (props changed)
  stable/9/sys/cddl/contrib/opensolaris/   (props changed)
  stable/9/sys/conf/   (props changed)
  stable/9/sys/contrib/dev/acpica/   (props changed)
  stable/9/sys/contrib/octeon-sdk/   (props changed)
  stable/9/sys/contrib/pf/   (props changed)
  stable/9/sys/contrib/x86emu/   (props changed)

Modified: stable/9/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- stable/9/sys/fs/nfsserver/nfs_nfsdstate.c   Sat Jan 28 01:38:48 2012        
(r230636)
+++ stable/9/sys/fs/nfsserver/nfs_nfsdstate.c   Sat Jan 28 01:45:19 2012        
(r230637)
@@ -315,7 +315,7 @@ nfsrv_setclient(struct nfsrv_descript *n
                for (i = 0; i < NFSSTATEHASHSIZE; i++) {
                        LIST_NEWHEAD(&new_clp->lc_stateid[i],
                            &clp->lc_stateid[i], ls_hash);
-                       LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_list)
+                       LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_hash)
                                tstp->ls_clp = new_clp;
                }
                LIST_INSERT_HEAD(NFSCLIENTHASH(new_clp->lc_clientid), new_clp,
@@ -369,7 +369,7 @@ nfsrv_setclient(struct nfsrv_descript *n
        for (i = 0; i < NFSSTATEHASHSIZE; i++) {
                LIST_NEWHEAD(&new_clp->lc_stateid[i], &clp->lc_stateid[i],
                    ls_hash);
-               LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_list)
+               LIST_FOREACH(tstp, &new_clp->lc_stateid[i], ls_hash)
                        tstp->ls_clp = new_clp;
        }
        LIST_INSERT_HEAD(NFSCLIENTHASH(new_clp->lc_clientid), new_clp,
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to