summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_mount.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-14 14:35:31 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-14 14:35:31 +0000
commit00f8ced6f0782724bd94c8df44ef6f8c5f7a968d (patch)
tree1650ef4245e7dd509784c670e2a5d0e2771c5f6e /nuttx/fs/nfs/nfs_mount.h
parent6672906e2f5e10b6066af17b76b70b9e6f796ae8 (diff)
downloadpx4-nuttx-00f8ced6f0782724bd94c8df44ef6f8c5f7a968d.tar.gz
px4-nuttx-00f8ced6f0782724bd94c8df44ef6f8c5f7a968d.tar.bz2
px4-nuttx-00f8ced6f0782724bd94c8df44ef6f8c5f7a968d.zip
Clean up NFS user interface; Fix NFS disconnect bug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4841 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/nfs_mount.h')
-rw-r--r--nuttx/fs/nfs/nfs_mount.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/nuttx/fs/nfs/nfs_mount.h b/nuttx/fs/nfs/nfs_mount.h
index f0a5bcfe6..cfae14e37 100644
--- a/nuttx/fs/nfs/nfs_mount.h
+++ b/nuttx/fs/nfs/nfs_mount.h
@@ -77,14 +77,12 @@ struct nfsmount
bool nm_mounted; /* true: The file system is ready */
uint8_t nm_fhsize; /* Size of root file handle (host order) */
uint8_t nm_sotype; /* Type of socket */
- uint8_t nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */
+ uint8_t nm_timeo; /* Init timer */
uint8_t nm_retry; /* Max retries */
- uint8_t nm_verf[NFSX_V3WRITEVERF]; /* V3 write verifier */
uint16_t nm_rsize; /* Max size of read RPC */
uint16_t nm_wsize; /* Max size of write RPC */
uint16_t nm_readdirsize; /* Size of a readdir RPC */
uint16_t nm_buflen; /* Size of I/O buffer */
- uint32_t nm_flag; /* Flags for soft/hard... */
/* Set aside memory on the stack to hold the largest call message. NOTE
* that for the case of the write call message, it is the reply message that
@@ -130,9 +128,7 @@ struct nfsmount
struct nfs_mount_parameters
{
-
- uint8_t flag; /* Flags for soft/hard... */
- uint8_t timeo; /* Init timer for NFSMNT_DUMBTIMR */
+ uint8_t timeo; /* Init timer */
uint8_t retry; /* Max retries */
uint16_t rsize; /* Max size of read RPC */
uint16_t wsize; /* Max size of write RPC */