summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/nfs.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-28 00:10:43 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-28 00:10:43 +0000
commitc2853cbc580b343ff45c3befc1b484ffc2a2ecfe (patch)
treec93decb412e433193f06fc5602a9560119017d19 /nuttx/fs/nfs/nfs.h
parent3f871cbbae8fc67b704f267fadbb932046afd5ca (diff)
downloadpx4-nuttx-c2853cbc580b343ff45c3befc1b484ffc2a2ecfe.tar.gz
px4-nuttx-c2853cbc580b343ff45c3befc1b484ffc2a2ecfe.tar.bz2
px4-nuttx-c2853cbc580b343ff45c3befc1b484ffc2a2ecfe.zip
NFS update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4532 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/fs/nfs/nfs.h')
-rw-r--r--nuttx/fs/nfs/nfs.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/nuttx/fs/nfs/nfs.h b/nuttx/fs/nfs/nfs.h
index b08580acf..88276123c 100644
--- a/nuttx/fs/nfs/nfs.h
+++ b/nuttx/fs/nfs/nfs.h
@@ -215,7 +215,7 @@ struct nfsd_srvargs
unsigned char *nsd_authstr; /* Auth string (ret) */
int nsd_verflen; /* and the verifier */
unsigned char *nsd_verfstr;
- struct timeval nsd_timestamp; /* timestamp from verifier */
+ struct timeval nsd_timestamp; /* timestamp from verifier */
uint32_t nsd_ttl; /* credential ttl (sec) */
};
@@ -303,13 +303,13 @@ enum nfs_rto_timers
union nethostaddr
{
- u_int32_t had_inetaddr;
+ uint32_t had_inetaddr;
struct mbuf *had_nam;
};
struct nfssvc_sock
{
- TAILQ_ENTRY(nfssvc_sock) ns_chain; /* List of all nfssvc_sock's */
+ // TAILQ_ENTRY(nfssvc_sock) ns_chain; /* List of all nfssvc_sock's */
struct file *ns_fp; /* fp from the... */
struct socket *ns_so; /* ...socket this struct wraps */
int ns_flag; /* socket status flags */
@@ -323,7 +323,7 @@ struct nfssvc_sock
struct nfsd
{
- TAILQ_ENTRY(nfsd) nfsd_chain; /* List of all nfsd's */
+ //TAILQ_ENTRY(nfsd) nfsd_chain; /* List of all nfsd's */
int nfsd_flag; /* NFSD_ flags */
struct nfssvc_sock *nfsd_slp; /* Current socket */
struct nfsrv_descript *nfsd_nd; /* Associated nfsrv_descript */
@@ -342,7 +342,7 @@ struct nfsrv_descript
/****************************************************************************
* Public Data
****************************************************************************/
-
+/*
extern int nfs_niothreads;
extern TAILQ_HEAD(nfssvc_sockhead, nfssvc_sock) nfssvc_sockhead;
extern int nfssvc_sockhead_flag;
@@ -351,7 +351,7 @@ extern struct pool nfsreqpl;
extern struct pool nfs_node_pool;
extern TAILQ_HEAD(nfsdhead, nfsd) nfsd_head;
extern int nfsd_head_flag;
-
+*/
/****************************************************************************
* Public Function Prototypes
****************************************************************************/