Lines Matching defs:nfs_server
132 struct nfs_server { struct
134 struct list_head client_link; /* List of other nfs_server structs argument
137 struct list_head master_link; /* link in master servers list */
138 struct rpc_clnt * client; /* RPC client handle */
139 struct rpc_clnt * client_acl; /* ACL RPC client handle */
140 struct nlm_host *nlm_host; /* NLM client handle */
141 struct nfs_iostats __percpu *io_stats; /* I/O statistics */
142 atomic_long_t writeback; /* number of writeback pages */
143 unsigned int write_congested;/* flag set when writeback gets too high */
144 unsigned int flags; /* various flags */
160 unsigned int fattr_valid; /* Valid attributes */
161 unsigned int caps; /* server capabilities */
162 unsigned int rsize; /* read size */
163 unsigned int rpages; /* read size (in pages) */
164 unsigned int wsize; /* write size */
165 unsigned int wpages; /* write size (in pages) */
166 unsigned int wtmult; /* server disk block size */
167 unsigned int dtsize; /* readdir size */
168 unsigned short port; /* "port=" setting */
169 unsigned int bsize; /* server block size */
171 unsigned int gxasize; /* getxattr size */
172 unsigned int sxasize; /* setxattr size */
173 unsigned int lxasize; /* listxattr size */
175 unsigned int acregmin; /* attr cache timeouts */
176 unsigned int acregmax;
177 unsigned int acdirmin;
178 unsigned int acdirmax;
179 unsigned int namelen;
180 unsigned int options; /* extra options enabled by mount */
181 unsigned int clone_blksize; /* granularity of a CLONE operation */
186 change_attr_type;/* Description of change attribute */
188 struct nfs_fsid fsid;
189 int s_sysfs_id; /* sysfs dentry index */
190 __u64 maxfilesize; /* maximum file size */
191 struct timespec64 time_delta; /* smallest time granularity */
192 unsigned long mount_time; /* when this fs was mounted */
193 struct super_block *super; /* VFS super block */
194 dev_t s_dev; /* superblock dev numbers */
195 struct nfs_auth_info auth_info; /* parsed auth flavors */
198 struct fscache_volume *fscache; /* superblock cookie */
199 char *fscache_uniq; /* Uniquifier (or NULL) */
202 u32 pnfs_blksize; /* layout_blksize attr */
204 u32 attr_bitmask[3];/* V4 bitmask representing the set
207 u32 attr_bitmask_nl[3];
212 u32 exclcreat_bitmask[3];
217 u32 cache_consistency_bitmask[3];
222 u32 acl_bitmask; /* V4 bitmask representing the ACEs
248 void (*destroy)(struct nfs_server *); argument
250 atomic_t active; /* Keep trace of any activity to this server */
253 struct sockaddr_storage mountd_address;
254 size_t mountd_addrlen;
255 u32 mountd_version;
256 unsigned short mountd_port;
257 unsigned short mountd_protocol;
258 struct rpc_wait_queue uoc_rpcwaitq;
261 unsigned int read_hdrsize;
264 const struct cred *cred;
265 bool has_sec_mnt_opts;
266 struct kobject kobj;