summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/rpc.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-08 00:14:54 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-08 00:14:54 +0000
commitbaf6287aa6309c19058f3987abe77e60ac2119a1 (patch)
tree16f50c3c621870745aa14a1227b01f92a2234517 /nuttx/fs/nfs/rpc.h
parent9ff075d9f32863b462dd5da68574bf253a2615f5 (diff)
downloadpx4-nuttx-baf6287aa6309c19058f3987abe77e60ac2119a1.tar.gz
px4-nuttx-baf6287aa6309c19058f3987abe77e60ac2119a1.tar.bz2
px4-nuttx-baf6287aa6309c19058f3987abe77e60ac2119a1.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4814 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/rpc.h')
-rw-r--r--nuttx/fs/nfs/rpc.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/nuttx/fs/nfs/rpc.h b/nuttx/fs/nfs/rpc.h
index 8eb46614f..ed7b13184 100644
--- a/nuttx/fs/nfs/rpc.h
+++ b/nuttx/fs/nfs/rpc.h
@@ -387,72 +387,84 @@ struct rpc_reply_header
struct rpc_reply_pmap
{
struct rpc_reply_header rh;
+ uint32_t status;
struct call_result_pmap pmap;
};
struct rpc_reply_mount
{
struct rpc_reply_header rh;
+ uint32_t status;
struct call_result_mount mount;
};
struct rpc_reply_create
{
struct rpc_reply_header rh;
+ uint32_t status;
struct CREATE3resok create;
};
struct rpc_reply_write
{
struct rpc_reply_header rh;
+ uint32_t status;
struct WRITE3resok write;
};
struct rpc_reply_read
{
struct rpc_reply_header rh;
+ uint32_t status;
struct READ3resok read;
};
struct rpc_reply_remove
{
struct rpc_reply_header rh;
+ uint32_t status;
struct REMOVE3resok remove;
};
struct rpc_reply_rename
{
struct rpc_reply_header rh;
+ uint32_t status;
struct RENAME3resok rename;
};
struct rpc_reply_mkdir
{
struct rpc_reply_header rh;
+ uint32_t status;
struct MKDIR3resok mkdir;
};
struct rpc_reply_rmdir
{
struct rpc_reply_header rh;
+ uint32_t status;
struct RMDIR3resok rmdir;
};
struct rpc_reply_readdir
{
struct rpc_reply_header rh;
+ uint32_t status;
struct READDIR3resok readdir;
};
struct rpc_reply_fsinfo
{
struct rpc_reply_header rh;
+ uint32_t status;
struct nfsv3_fsinfo fsinfo;
};
struct rpc_reply_fsstat
{
struct rpc_reply_header rh;
+ uint32_t status;
struct nfs_statfs fsstat;
};
@@ -549,4 +561,4 @@ int rpcclnt_request(struct rpcclnt *, int, int, int, void *, FAR const void *,
int rpcclnt_cancelreqs(struct rpcclnt *);
#endif
-#endif /* _RPCCLNT_H_ */
+#endif /* __FS_NFS_RPC_H */