Lines Matching defs:nfs_server

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