Lines Matching defs:afs_net
250 struct afs_net { struct
251 struct net *net; /* Backpointer to the owning net namespace */
252 struct afs_uuid uuid;
253 bool live; /* F if this namespace is being removed */
256 struct socket *socket;
257 struct afs_call *spare_incoming_call;
258 struct work_struct charge_preallocation_work;
259 struct mutex socket_mutex;
260 atomic_t nr_outstanding_calls;
261 atomic_t nr_superblocks;
264 struct rb_root cells;
265 struct afs_cell *ws_cell;
266 struct work_struct cells_manager;
267 struct timer_list cells_timer;
268 atomic_t cells_outstanding;
269 struct rw_semaphore cells_lock;
270 struct mutex cells_alias_lock;
272 struct mutex proc_cells_lock;
273 struct hlist_head proc_cells;
279 seqlock_t fs_lock; /* For fs_servers, fs_probe_*, fs_proc */
280 struct rb_root fs_servers; /* afs_server (by server UUID or address) */
281 struct list_head fs_probe_fast; /* List of afs_server to probe at 30s intervals */
282 struct list_head fs_probe_slow; /* List of afs_server to probe at 5m intervals */
283 struct hlist_head fs_proc; /* procfs servers list */
285 struct hlist_head fs_addresses4; /* afs_server (by lowest IPv4 addr) */
286 struct hlist_head fs_addresses6; /* afs_server (by lowest IPv6 addr) */
287 seqlock_t fs_addr_lock; /* For fs_addresses[46] */
289 struct work_struct fs_manager;
290 struct timer_list fs_timer;
292 struct work_struct fs_prober;
293 struct timer_list fs_probe_timer;
294 atomic_t servers_outstanding;
297 struct mutex lock_manager_mutex;
300 struct super_block *dynroot_sb; /* Dynamic root mount superblock */
301 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
302 struct afs_sysnames *sysnames;
303 rwlock_t sysnames_lock;
306 atomic_t n_lookup; /* Number of lookups done */
307 atomic_t n_reval; /* Number of dentries needing revalidation */
308 atomic_t n_inval; /* Number of invalidations by the server */
309 atomic_t n_relpg; /* Number of invalidations by releasepage */
310 atomic_t n_read_dir; /* Number of directory pages read */
311 atomic_t n_dir_cr; /* Number of directory entry creation edits */
312 atomic_t n_dir_rm; /* Number of directory entry removal edits */
313 atomic_t n_stores; /* Number of store ops */
314 atomic_long_t n_store_bytes; /* Number of bytes stored */
315 atomic_long_t n_fetch_bytes; /* Number of bytes fetched */
316 atomic_t n_fetches; /* Number of data fetch ops */
1165 static inline struct afs_net *afs_net(struct net *net) in afs_net() function