Lines Matching defs:nfs_server

130 struct nfs_server {  struct
132 struct list_head client_link; /* List of other nfs_server structs argument
135 struct list_head master_link; /* link in master servers list */
136 struct rpc_clnt * client; /* RPC client handle */
137 struct rpc_clnt * client_acl; /* ACL RPC client handle */
138 struct nlm_host *nlm_host; /* NLM client handle */
139 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
140 atomic_long_t writeback; /* number of writeback pages */
141 int flags; /* various flags */
142 unsigned int caps; /* server capabilities */
143 unsigned int rsize; /* read size */
144 unsigned int rpages; /* read size (in pages) */
145 unsigned int wsize; /* write size */
146 unsigned int wpages; /* write size (in pages) */
147 unsigned int wtmult; /* server disk block size */
148 unsigned int dtsize; /* readdir size */
149 unsigned short port; /* "port=" setting */
150 unsigned int bsize; /* server block size */
151 unsigned int acregmin; /* attr cache timeouts */
152 unsigned int acregmax;
153 unsigned int acdirmin;
154 unsigned int acdirmax;
155 unsigned int namelen;
156 unsigned int options; /* extra options enabled by mount */
157 unsigned int clone_blksize; /* granularity of a CLONE operation */
161 struct nfs_fsid fsid;
162 __u64 maxfilesize; /* maximum file size */
163 struct timespec time_delta; /* smallest time granularity */
164 unsigned long mount_time; /* when this fs was mounted */
165 struct super_block *super; /* VFS super block */
166 dev_t s_dev; /* superblock dev numbers */
167 struct nfs_auth_info auth_info; /* parsed auth flavors */
170 struct nfs_fscache_key *fscache_key; /* unique key for superblock */
171 struct fscache_cookie *fscache; /* superblock cookie */
174 u32 pnfs_blksize; /* layout_blksize attr */
176 u32 attr_bitmask[3];/* V4 bitmask representing the set
179 u32 attr_bitmask_nl[3];
184 u32 exclcreat_bitmask[3];
189 u32 cache_consistency_bitmask[3];
194 u32 acl_bitmask; /* V4 bitmask representing the ACEs
220 void (*destroy)(struct nfs_server *); argument
222 atomic_t active; /* Keep trace of any activity to this server */
225 struct sockaddr_storage mountd_address;
226 size_t mountd_addrlen;
227 u32 mountd_version;
228 unsigned short mountd_port;
229 unsigned short mountd_protocol;
230 struct rpc_wait_queue uoc_rpcwaitq;