Lines Matching defs:nfsd_net
42 struct nfsd_net { struct
43 struct cld_net *cld_net;
45 struct cache_detail *svc_expkey_cache;
46 struct cache_detail *svc_export_cache;
48 struct cache_detail *idtoname_cache;
49 struct cache_detail *nametoid_cache;
51 struct lock_manager nfsd4_manager;
52 bool grace_ended;
53 time64_t boot_time;
55 struct dentry *nfsd_client_dir;
67 struct list_head *reclaim_str_hashtbl;
68 int reclaim_str_hashtbl_size;
69 struct list_head *conf_id_hashtbl;
70 struct rb_root conf_name_tree;
71 struct list_head *unconf_id_hashtbl;
72 struct rb_root unconf_name_tree;
73 struct list_head *sessionid_hashtbl;
83 struct list_head client_lru;
84 struct list_head close_lru;
85 struct list_head del_recall_lru;
109 bool nfsd_net_up; argument
110 bool lockd_up;
112 seqlock_t writeverf_lock;
113 unsigned char writeverf[8];
119 unsigned int max_connections;
121 u32 clientid_base;
122 u32 clientid_counter;
123 u32 clverifier_counter;
125 struct svc_serv *nfsd_serv;
132 int keep_active;
138 u32 s2s_cp_cl_id;
139 struct idr s2s_cp_stateids;
140 spinlock_t s2s_cp_lock;
145 bool *nfsd_versions;
146 bool *nfsd4_minorversions;
151 struct nfsd_drc_bucket *drc_hashtbl;
154 unsigned int max_drc_entries;
157 unsigned int maskbits;
158 unsigned int drc_hashsize;
168 atomic_t num_drc_entries;
171 struct percpu_counter counter[NFSD_NET_COUNTERS_NUM];
174 unsigned int longest_chain;
177 unsigned int longest_chain_cachesize;
202 #define nfsd_netns_ready(nn) ((nn)->sessionid_hashtbl) argument
204 extern void nfsd_netns_free_versions(struct nfsd_net *nn); argument