Lines Matching defs:rxrpc_net
59 struct rxrpc_net { struct
60 struct proc_dir_entry *proc_net; /* Subdir in /proc/net */
61 u32 epoch; /* Local epoch for detecting local-end reset */
62 struct list_head calls; /* List of calls active in this namespace */
63 spinlock_t call_lock; /* Lock for ->calls */
64 atomic_t nr_calls; /* Count of allocated calls */
66 atomic_t nr_conns;
67 struct list_head conn_proc_list; /* List of conns in this namespace for proc */
68 struct list_head service_conns; /* Service conns in this namespace */
69 rwlock_t conn_lock; /* Lock for ->conn_proc_list, ->service_conns */
70 struct work_struct service_conn_reaper;
71 struct timer_list service_conn_reap_timer;
73 bool live;
75 bool kill_all_client_conns;
76 atomic_t nr_client_conns;
77 spinlock_t client_conn_cache_lock; /* Lock for ->*_client_conns */
78 spinlock_t client_conn_discard_lock; /* Prevent multiple discarders */
79 struct list_head idle_client_conns;
80 struct work_struct client_conn_reaper;
81 struct timer_list client_conn_reap_timer;
83 struct hlist_head local_endpoints;
84 struct mutex local_mutex; /* Lock for ->local_endpoints */
87 spinlock_t peer_hash_lock; /* Lock for ->peer_hash */
90 u8 peer_keepalive_cursor;
91 time64_t peer_keepalive_base;
92 struct list_head peer_keepalive[32];
93 struct list_head peer_keepalive_new;
94 struct timer_list peer_keepalive_timer;
95 struct work_struct peer_keepalive_work;
968 static inline struct rxrpc_net *rxrpc_net(struct net *net) in rxrpc_net() function