Lines Matching defs:nfsd_net
43 struct nfsd_net { struct
44 struct cld_net *cld_net;
46 struct cache_detail *svc_expkey_cache;
47 struct cache_detail *svc_export_cache;
49 struct cache_detail *idtoname_cache;
50 struct cache_detail *nametoid_cache;
52 struct lock_manager nfsd4_manager;
53 bool grace_ended;
54 time64_t boot_time;
56 struct dentry *nfsd_client_dir;
68 struct list_head *reclaim_str_hashtbl;
69 int reclaim_str_hashtbl_size;
70 struct list_head *conf_id_hashtbl;
71 struct rb_root conf_name_tree;
72 struct list_head *unconf_id_hashtbl;
73 struct rb_root unconf_name_tree;
74 struct list_head *sessionid_hashtbl;
84 struct list_head client_lru;
85 struct list_head close_lru;
86 struct list_head del_recall_lru;
110 bool nfsd_net_up; argument
111 bool lockd_up;
113 seqlock_t writeverf_lock;
114 unsigned char writeverf[8];
120 unsigned int max_connections;
122 u32 clientid_base;
123 u32 clientid_counter;
124 u32 clverifier_counter;
126 struct svc_info nfsd_info;
134 u32 s2s_cp_cl_id;
135 struct idr s2s_cp_stateids;
136 spinlock_t s2s_cp_lock;
141 bool *nfsd_versions;
142 bool *nfsd4_minorversions;
147 struct nfsd_drc_bucket *drc_hashtbl;
150 unsigned int max_drc_entries;
153 unsigned int maskbits;
154 unsigned int drc_hashsize;
164 atomic_t num_drc_entries;
167 struct percpu_counter counter[NFSD_NET_COUNTERS_NUM];
170 unsigned int longest_chain;
173 unsigned int longest_chain_cachesize;
198 #define nfsd_netns_ready(nn) ((nn)->sessionid_hashtbl) argument
200 extern void nfsd_netns_free_versions(struct nfsd_net *nn); argument