summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/nfs/nfs_mount.h')
-rw-r--r--nuttx/fs/nfs/nfs_mount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/fs/nfs/nfs_mount.h b/nuttx/fs/nfs/nfs_mount.h
index 3e58057c0..60ffdd3a4 100644
--- a/nuttx/fs/nfs/nfs_mount.h
+++ b/nuttx/fs/nfs/nfs_mount.h
@@ -77,7 +77,7 @@ struct nfsmount
uint32_t nm_numgrps; /* Max. size of groupslist */
nfsfh_t nm_fh; /* File handle of root dir */
char nm_path[90]; /* server's path of the directory being mount */
- uint32_t nm_fhsize; /* Size of root file handle */
+ uint32_t nm_fhsize; /* Size of root file handle (host order) */
struct nfs_fattr nm_fattr; /* nfs file attribute cache */
struct rpcclnt *nm_rpcclnt; /* rpc state */
struct socket *nm_so; /* Rpc socket */
@@ -101,7 +101,7 @@ struct nfsmount
uint32_t nm_acdirmax; /* Directory attr cache max lifetime */
uint32_t nm_acregmin; /* Reg file attr cache min lifetime */
uint32_t nm_acregmax; /* Reg file attr cache max lifetime */
- unsigned char nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
+ uint8_t nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
};
#endif