summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_node.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_node.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_node.h')
-rw-r--r--nuttx/fs/nfs/nfs_node.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/nuttx/fs/nfs/nfs_node.h b/nuttx/fs/nfs/nfs_node.h
index 09f9f2b08..ff0380c85 100644
--- a/nuttx/fs/nfs/nfs_node.h
+++ b/nuttx/fs/nfs/nfs_node.h
@@ -61,7 +61,6 @@
#define n_atim n_un1.nf_atim
#define n_mtim n_un2.nf_mtim
#define n_cookieverf n_un1.nd_cookieverf
-#define n_direofoffset n_un2.nd_direof
/* Flags for n_flag */
@@ -85,7 +84,6 @@
#define n_sillyrename n_un3.nf_silly
#define n_cookieverf n_un1.nd_cookieverf
#define n4_cookieverf n_un1.nd4_cookieverf
-#define n_direofoffset n_un2.nd_direof
#define n_cookies n_un3.nd_cook
/****************************************************************************
@@ -125,7 +123,6 @@ struct nfsnode
union
{
struct timespec nf_mtim;
- off_t nd_direof; /* Directory EOF offset cache */
} n_un2;
uint32_t n_fhsize; /* size in bytes, of fh */
short n_flag; /* Flag for locking.. */
@@ -143,22 +140,4 @@ struct nfsnode
//int n_commitflags;
};
-/* This structure is used internally for describing the result of
- * walking a path
- */
-
-struct nfs_dirinfo_s
-{
- /* These values describe the directory containing the terminal
- * path component (of the terminal component itself if it is
- * a directory.
- */
-
- struct nfsdir_s n_dir; /* Describes directory. */
-
- /* Values from the NFS file entry */
-
- struct nfsnode attribute;
-};
-
#endif /* __FS_NFS_NFS_NODE_H */