NFS update

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4538 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-03-28 23:27:24 +00:00
parent e13b101db6
commit d5dc27cd37
7 changed files with 1163 additions and 256 deletions
+10
View File
@@ -116,6 +116,13 @@ struct fs_nxffsdir_s
off_t nx_offset; /* Offset to the next inode */
};
#endif
#ifdef CONFIG_NFS
struct fs_nfsdir_s
{
uint32_t cookie[2];
}
#endif
#endif /* CONFIG_DISABLE_MOUNTPOINT */
struct fs_dirent_s
@@ -167,6 +174,9 @@ struct fs_dirent_s
#ifdef CONFIG_FS_NXFFS
struct fs_nxffsdir_s nxffs;
#endif
#ifdef CONFIG_NFS
struct fs_nfsdir_s nfs;
#endif
#endif /* !CONFIG_DISABLE_MOUNTPOINT */
} u;