svn commit: r362567 - projects/nfs-over-tls/sys/fs/nfs
Rick Macklem
rmacklem at FreeBSD.org
Wed Jun 24 01:29:41 UTC 2020
Author: rmacklem
Date: Wed Jun 24 01:29:40 2020
New Revision: 362567
URL: https://svnweb.freebsd.org/changeset/base/362567
Log:
Move the new fields in struct nfsrv_descript to the end of the structure.
This makes integration a little simpler, since the offsets of the other
fields no longer change.
Modified:
projects/nfs-over-tls/sys/fs/nfs/nfs.h
Modified: projects/nfs-over-tls/sys/fs/nfs/nfs.h
==============================================================================
--- projects/nfs-over-tls/sys/fs/nfs/nfs.h Wed Jun 24 00:22:10 2020 (r362566)
+++ projects/nfs-over-tls/sys/fs/nfs/nfs.h Wed Jun 24 01:29:40 2020 (r362567)
@@ -646,9 +646,6 @@ struct nfsrv_descript {
NFSSOCKADDR_T nd_nam2; /* return socket addr */
caddr_t nd_dpos; /* Current dissect pos */
caddr_t nd_bpos; /* Current build pos */
- int nd_bextpg; /* Current ext_pgs page */
- int nd_bextpgsiz; /* Bytes left in page */
- int nd_maxextsiz; /* Max ext_pgs mbuf size */
u_int64_t nd_flag; /* nd_flag */
u_int16_t nd_procnum; /* RPC # */
u_int32_t nd_repstat; /* Reply status */
@@ -673,6 +670,9 @@ struct nfsrv_descript {
nfsv4stateid_t nd_savedcurstateid; /* Saved Current StateID */
uint32_t nd_maxreq; /* Max. request (session). */
uint32_t nd_maxresp; /* Max. reply (session). */
+ int nd_bextpg; /* Current ext_pgs page */
+ int nd_bextpgsiz; /* Bytes left in page */
+ int nd_maxextsiz; /* Max ext_pgs mbuf size */
};
#define nd_princlen nd_gssnamelen
More information about the svn-src-projects
mailing list