Lines Matching defs:afs_net
275 struct afs_net { struct
276 struct net *net; /* Backpointer to the owning net namespace */
277 struct afs_uuid uuid;
278 bool live; /* F if this namespace is being removed */
281 struct socket *socket;
282 struct afs_call *spare_incoming_call;
283 struct work_struct charge_preallocation_work;
284 struct mutex socket_mutex;
285 atomic_t nr_outstanding_calls;
286 atomic_t nr_superblocks;
289 struct rb_root cells;
290 struct afs_cell __rcu *ws_cell;
291 struct work_struct cells_manager;
292 struct timer_list cells_timer;
293 atomic_t cells_outstanding;
294 struct rw_semaphore cells_lock;
295 struct mutex cells_alias_lock;
297 struct mutex proc_cells_lock;
298 struct hlist_head proc_cells;
304 seqlock_t fs_lock; /* For fs_servers, fs_probe_*, fs_proc */
305 struct rb_root fs_servers; /* afs_server (by server UUID or address) */
306 struct list_head fs_probe_fast; /* List of afs_server to probe at 30s intervals */
307 struct list_head fs_probe_slow; /* List of afs_server to probe at 5m intervals */
308 struct hlist_head fs_proc; /* procfs servers list */
310 struct hlist_head fs_addresses; /* afs_server (by lowest IPv6 addr) */
311 seqlock_t fs_addr_lock; /* For fs_addresses[46] */
313 struct work_struct fs_manager;
314 struct timer_list fs_timer;
316 struct work_struct fs_prober;
317 struct timer_list fs_probe_timer;
318 atomic_t servers_outstanding;
321 struct mutex lock_manager_mutex;
324 struct super_block *dynroot_sb; /* Dynamic root mount superblock */
325 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
326 struct afs_sysnames *sysnames;
327 rwlock_t sysnames_lock;
328 struct afs_addr_preference_list __rcu *address_prefs;
329 u16 address_pref_version;
332 atomic_t n_lookup; /* Number of lookups done */
333 atomic_t n_reval; /* Number of dentries needing revalidation */
334 atomic_t n_inval; /* Number of invalidations by the server */
335 atomic_t n_relpg; /* Number of invalidations by release_folio */
336 atomic_t n_read_dir; /* Number of directory pages read */
337 atomic_t n_dir_cr; /* Number of directory entry creation edits */
338 atomic_t n_dir_rm; /* Number of directory entry removal edits */
339 atomic_t n_stores; /* Number of store ops */
340 atomic_long_t n_store_bytes; /* Number of bytes stored */
341 atomic_long_t n_fetch_bytes; /* Number of bytes fetched */
342 atomic_t n_fetches; /* Number of data fetch ops */
1246 static inline struct afs_net *afs_net(struct net *net) in afs_net() function