Lines Matching defs:afs_net

223 struct afs_net {  struct
224 struct net *net; /* Backpointer to the owning net namespace */
225 struct afs_uuid uuid;
226 bool live; /* F if this namespace is being removed */
229 struct socket *socket;
230 struct afs_call *spare_incoming_call;
231 struct work_struct charge_preallocation_work;
232 struct mutex socket_mutex;
233 atomic_t nr_outstanding_calls;
234 atomic_t nr_superblocks;
237 struct rb_root cells;
238 struct afs_cell __rcu *ws_cell;
239 struct work_struct cells_manager;
240 struct timer_list cells_timer;
241 atomic_t cells_outstanding;
242 seqlock_t cells_lock;
244 struct mutex proc_cells_lock;
245 struct hlist_head proc_cells;
251 seqlock_t fs_lock; /* For fs_servers */
252 struct rb_root fs_servers; /* afs_server (by server UUID or address) */
253 struct list_head fs_updates; /* afs_server (by update_at) */
254 struct hlist_head fs_proc; /* procfs servers list */
256 struct hlist_head fs_addresses4; /* afs_server (by lowest IPv4 addr) */
257 struct hlist_head fs_addresses6; /* afs_server (by lowest IPv6 addr) */
258 seqlock_t fs_addr_lock; /* For fs_addresses[46] */
260 struct work_struct fs_manager;
261 struct timer_list fs_timer;
262 atomic_t servers_outstanding;
265 struct mutex lock_manager_mutex;
268 struct super_block *dynroot_sb; /* Dynamic root mount superblock */
269 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
270 struct afs_sysnames *sysnames;
271 rwlock_t sysnames_lock;
274 atomic_t n_lookup; /* Number of lookups done */
275 atomic_t n_reval; /* Number of dentries needing revalidation */
276 atomic_t n_inval; /* Number of invalidations by the server */
277 atomic_t n_relpg; /* Number of invalidations by releasepage */
278 atomic_t n_read_dir; /* Number of directory pages read */
279 atomic_t n_dir_cr; /* Number of directory entry creation edits */
280 atomic_t n_dir_rm; /* Number of directory entry removal edits */
281 atomic_t n_stores; /* Number of store ops */
282 atomic_long_t n_store_bytes; /* Number of bytes stored */
283 atomic_long_t n_fetch_bytes; /* Number of bytes fetched */
284 atomic_t n_fetches; /* Number of data fetch ops */
830 static inline struct afs_net *afs_net(struct net *net) in afs_net() function