svn commit: r323149 - projects/pnfs-planb-server-stable11/sys/fs/nfsserver
Rick Macklem
rmacklem at FreeBSD.org
Sun Sep 3 22:00:38 UTC 2017
Author: rmacklem
Date: Sun Sep 3 22:00:36 2017
New Revision: 323149
URL: https://svnweb.freebsd.org/changeset/base/323149
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-stable11/sys/fs/nfsserver/nfs_nfsdstate.c
Modified: projects/pnfs-planb-server-stable11/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- projects/pnfs-planb-server-stable11/sys/fs/nfsserver/nfs_nfsdstate.c Sun Sep 3 16:45:18 2017 (r323148)
+++ projects/pnfs-planb-server-stable11/sys/fs/nfsserver/nfs_nfsdstate.c Sun Sep 3 22:00:36 2017 (r323149)
@@ -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;
More information about the svn-src-projects
mailing list