Lines Matching defs:nfs_server
141 struct nfs_server { struct
143 struct list_head client_link; /* List of other nfs_server structs argument
146 struct list_head master_link; /* link in master servers list */
147 struct rpc_clnt * client; /* RPC client handle */
148 struct rpc_clnt * client_acl; /* ACL RPC client handle */
149 struct nlm_host *nlm_host; /* NLM client handle */
150 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
151 wait_queue_head_t write_congestion_wait; /* wait until write congestion eases */
152 atomic_long_t writeback; /* number of writeback pages */
153 unsigned int write_congested;/* flag set when writeback gets too high */
154 unsigned int flags; /* various flags */
171 unsigned int fattr_valid; /* Valid attributes */
172 unsigned int caps; /* server capabilities */
173 unsigned int rsize; /* read size */
174 unsigned int rpages; /* read size (in pages) */
175 unsigned int wsize; /* write size */
176 unsigned int wpages; /* write size (in pages) */
177 unsigned int wtmult; /* server disk block size */
178 unsigned int dtsize; /* readdir size */
179 unsigned short port; /* "port=" setting */
180 unsigned int bsize; /* server block size */
182 unsigned int gxasize; /* getxattr size */
183 unsigned int sxasize; /* setxattr size */
184 unsigned int lxasize; /* listxattr size */
186 unsigned int acregmin; /* attr cache timeouts */
187 unsigned int acregmax;
188 unsigned int acdirmin;
189 unsigned int acdirmax;
190 unsigned int namelen;
191 unsigned int options; /* extra options enabled by mount */
192 unsigned int clone_blksize; /* granularity of a CLONE operation */
197 change_attr_type;/* Description of change attribute */
199 struct nfs_fsid fsid;
200 int s_sysfs_id; /* sysfs dentry index */
201 __u64 maxfilesize; /* maximum file size */
202 struct timespec64 time_delta; /* smallest time granularity */
203 unsigned long mount_time; /* when this fs was mounted */
204 struct super_block *super; /* VFS super block */
205 dev_t s_dev; /* superblock dev numbers */
206 struct nfs_auth_info auth_info; /* parsed auth flavors */
209 struct fscache_volume *fscache; /* superblock cookie */
210 char *fscache_uniq; /* Uniquifier (or NULL) */
213 u32 pnfs_blksize; /* layout_blksize attr */
215 u32 attr_bitmask[3];/* V4 bitmask representing the set
218 u32 attr_bitmask_nl[3];
223 u32 exclcreat_bitmask[3];
228 u32 cache_consistency_bitmask[3];
233 u32 acl_bitmask; /* V4 bitmask representing the ACEs
236 u32 fh_expire_type; /* V4 bitmask representing file
239 struct pnfs_layoutdriver_type *pnfs_curr_ld; /* Active layout driver */
240 struct rpc_wait_queue roc_rpcwaitq;
264 void (*destroy)(struct nfs_server *); argument
266 atomic_t active; /* Keep trace of any activity to this server */
269 struct sockaddr_storage mountd_address;
270 size_t mountd_addrlen;
271 u32 mountd_version;
272 unsigned short mountd_port;
273 unsigned short mountd_protocol;
274 struct rpc_wait_queue uoc_rpcwaitq;
277 unsigned int read_hdrsize;
280 const struct cred *cred;
281 bool has_sec_mnt_opts;
282 struct kobject kobj;
283 struct rcu_head rcu;