Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Sep 2017 22:02:59 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r323150 - projects/pnfs-planb-server/sys/fs/nfsserver
Message-ID:  <201709032202.v83M2xjx011355@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rmacklem
Date: Sun Sep  3 22:02:59 2017
New Revision: 323150
URL: https://svnweb.freebsd.org/changeset/base/323150

Log:
  Change the ffsd_stateid.seqid field in the Flex File Layout to be 0, so
  that the DS will accept it. Found during testing with the Linux flexfilelayout
  client driver.

Modified:
  projects/pnfs-planb-server/sys/fs/nfsserver/nfs_nfsdstate.c

Modified: projects/pnfs-planb-server/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- projects/pnfs-planb-server/sys/fs/nfsserver/nfs_nfsdstate.c	Sun Sep  3 22:00:36 2017	(r323149)
+++ projects/pnfs-planb-server/sys/fs/nfsserver/nfs_nfsdstate.c	Sun Sep  3 22:02:59 2017	(r323150)
@@ -6408,7 +6408,7 @@ nfsrv_flexlayout(struct nfsrv_descript *nd, int iomode
 		tl += (NFSX_V4DEVICEID / NFSX_UNSIGNED);
 		devid += NFSX_V4DEVICEID;
 		*tl++ = txdr_unsigned(1);		/* Efficiency. */
-		*tl++ = 0xffffffff;			/* Proxy Stateid. */
+		*tl++ = 0;				/* Proxy Stateid. */
 		*tl++ = 0x55555555;
 		*tl++ = 0x55555555;
 		*tl++ = 0x55555555;



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