Date: Sun, 3 Sep 2017 22:00:37 +0000 (UTC) From: Rick Macklem <rmacklem@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r323149 - projects/pnfs-planb-server-stable11/sys/fs/nfsserver Message-ID: <201709032200.v83M0bdX007624@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709032200.v83M0bdX007624>