Lines Matching defs:nfsd_net
32 struct nfsd_net { struct
33 struct cld_net *cld_net;
35 struct cache_detail *svc_expkey_cache;
36 struct cache_detail *svc_export_cache;
38 struct cache_detail *idtoname_cache;
39 struct cache_detail *nametoid_cache;
41 struct lock_manager nfsd4_manager;
42 bool grace_ended;
43 time64_t boot_time;
45 struct dentry *nfsd_client_dir;
57 struct list_head *reclaim_str_hashtbl;
58 int reclaim_str_hashtbl_size;
59 struct list_head *conf_id_hashtbl;
60 struct rb_root conf_name_tree;
61 struct list_head *unconf_id_hashtbl;
62 struct rb_root unconf_name_tree;
63 struct list_head *sessionid_hashtbl;
73 struct list_head client_lru;
74 struct list_head close_lru;
75 struct list_head del_recall_lru;
99 bool nfsd_net_up; argument
100 bool lockd_up;
103 struct timespec64 nfssvc_boot;
104 seqlock_t boot_lock;
110 unsigned int max_connections;
112 u32 clientid_base;
113 u32 clientid_counter;
114 u32 clverifier_counter;
116 struct svc_serv *nfsd_serv;
118 wait_queue_head_t ntf_wq;
119 atomic_t ntf_refcnt;
122 struct completion nfsd_shutdown_complete;
128 u32 s2s_cp_cl_id;
129 struct idr s2s_cp_stateids;
130 spinlock_t s2s_cp_lock;
135 bool *nfsd_versions;
136 bool *nfsd4_minorversions;
141 struct nfsd_drc_bucket *drc_hashtbl;
144 unsigned int max_drc_entries;
147 unsigned int maskbits;
148 unsigned int drc_hashsize;
181 extern void nfsd_netns_free_versions(struct nfsd_net *nn); argument