summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs_node.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-28 23:27:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-28 23:27:24 +0000
commit3e62f2be816d0a212b52fd609121004b16d80a8a (patch)
tree4a3dd57f16aca637a553cc076b74af38dea9f9df /nuttx/fs/nfs/nfs_node.h
parent1ad0258bca015406a52a0da9c9c13b2d19200864 (diff)
downloadpx4-nuttx-3e62f2be816d0a212b52fd609121004b16d80a8a.tar.gz
px4-nuttx-3e62f2be816d0a212b52fd609121004b16d80a8a.tar.bz2
px4-nuttx-3e62f2be816d0a212b52fd609121004b16d80a8a.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4538 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/nfs_node.h')
-rw-r--r--nuttx/fs/nfs/nfs_node.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/nuttx/fs/nfs/nfs_node.h b/nuttx/fs/nfs/nfs_node.h
index 88e4a9d4b..2cc1e14a7 100644
--- a/nuttx/fs/nfs/nfs_node.h
+++ b/nuttx/fs/nfs/nfs_node.h
@@ -111,15 +111,14 @@ struct sillyrename
struct nfsnode
{
- struct nfsnode *nfs_next; /* Retained in a singly linked list filehandle/node tree. */
- bool nfs_open; /* true: The file is (still) open */
+ struct nfsnode *n_next; /* Retained in a singly linked list filehandle/node tree. */
+ bool n_open; /* true: The file is (still) open */
uint64_t n_size; /* Current size of file */
struct nfs_fattr n_fattr; /* nfs file attribute cache */
time_t n_attrstamp; /* Attr. cache timestamp */
struct timespec n_mtime; /* Prev modify time. */
time_t n_ctime; /* Prev create time. */
nfsfh_t *n_fhp; /* NFS File Handle */
- nfstype nfsv3_type; /* File type */
struct inode *n_inode; /* associated inode */
int n_error; /* Save write error value */
union