summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_mount.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-10 18:16:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-10 18:16:01 +0000
commitbd4defc1489e67d10a8ebbadc0ef91d48ff584fa (patch)
tree78d0ed9c5aa18d8d9bdd1934003a3945b6da5f08 /nuttx/fs/nfs/nfs_mount.h
parent16efc815bddec5f830a35316aeb4080f112dc554 (diff)
downloadpx4-nuttx-bd4defc1489e67d10a8ebbadc0ef91d48ff584fa.tar.gz
px4-nuttx-bd4defc1489e67d10a8ebbadc0ef91d48ff584fa.tar.bz2
px4-nuttx-bd4defc1489e67d10a8ebbadc0ef91d48ff584fa.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4824 42af7a65-404d-4744-a932-0658087f49c3
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