summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_mount.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-23 23:21:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-23 23:21:30 +0000
commitaee2480fc6f591ac4b0d62cbba3770a033331819 (patch)
tree462a51b8aff86cae0d449394d56e3720da7a5565 /nuttx/fs/nfs/nfs_mount.h
parenta8aed07667d2a225ca6b09fadb91e66d7c554312 (diff)
downloadpx4-nuttx-aee2480fc6f591ac4b0d62cbba3770a033331819.tar.gz
px4-nuttx-aee2480fc6f591ac4b0d62cbba3770a033331819.tar.bz2
px4-nuttx-aee2480fc6f591ac4b0d62cbba3770a033331819.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4650 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/nfs_mount.h')
-rw-r--r--nuttx/fs/nfs/nfs_mount.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/fs/nfs/nfs_mount.h b/nuttx/fs/nfs/nfs_mount.h
index 7ca070b9d..bfd5035bd 100644
--- a/nuttx/fs/nfs/nfs_mount.h
+++ b/nuttx/fs/nfs/nfs_mount.h
@@ -47,6 +47,8 @@
* Included Files
****************************************************************************/
+ #include <nuttx/fs/nfs.h>
+
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
@@ -68,7 +70,6 @@ struct nfsmount
{
int nm_flag; /* Flags for soft/hard... */
int nm_state; /* Internal state flags */
-//struct inode *nm_blkdriver; /* Vfs structure for this filesystem */
struct nfsnode *nm_head; /* A list to all files opened on this mountpoint */
bool nm_mounted; /* true: The file system is ready */
sem_t nm_sem; /* Used to assume thread-safe access */
@@ -98,8 +99,6 @@ struct nfsmount
int nm_acregmin; /* Reg file attr cache min lifetime */
int nm_acregmax; /* Reg file attr cache max lifetime */
unsigned char *nm_verf; /* V3 write verifier */
-//char nm_mntonname[90]; /* directory on which mounted */
-//uint8_t *nm_buffer; /* This is an allocated buffer to hold one sector*/
};
#endif