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;
46 struct vfsmount *nfsd_mnt;
48 struct dentry *nfsd_client_dir;
60 struct list_head *reclaim_str_hashtbl;
61 int reclaim_str_hashtbl_size;
62 struct list_head *conf_id_hashtbl;
63 struct rb_root conf_name_tree;
64 struct list_head *unconf_id_hashtbl;
65 struct rb_root unconf_name_tree;
66 struct list_head *sessionid_hashtbl;
76 struct list_head client_lru;
77 struct list_head close_lru;
78 struct list_head del_recall_lru;
102 bool nfsd_net_up; argument
103 bool lockd_up;
106 struct timespec64 nfssvc_boot;
107 seqlock_t boot_lock;
113 unsigned int max_connections;
115 u32 clientid_base;
116 u32 clientid_counter;
117 u32 clverifier_counter;
119 struct svc_serv *nfsd_serv;
121 wait_queue_head_t ntf_wq;
122 atomic_t ntf_refcnt;
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