Lines Matching defs:rxrpc_net
68 struct rxrpc_net { struct
69 struct proc_dir_entry *proc_net; /* Subdir in /proc/net */
70 u32 epoch; /* Local epoch for detecting local-end reset */
71 struct list_head calls; /* List of calls active in this namespace */
72 rwlock_t call_lock; /* Lock for ->calls */
73 atomic_t nr_calls; /* Count of allocated calls */
75 atomic_t nr_conns;
76 struct list_head conn_proc_list; /* List of conns in this namespace for proc */
77 struct list_head service_conns; /* Service conns in this namespace */
78 rwlock_t conn_lock; /* Lock for ->conn_proc_list, ->service_conns */
79 struct work_struct service_conn_reaper;
80 struct timer_list service_conn_reap_timer;
82 unsigned int nr_client_conns;
83 unsigned int nr_active_client_conns;
84 bool kill_all_client_conns;
85 bool live;
86 spinlock_t client_conn_cache_lock; /* Lock for ->*_client_conns */
87 spinlock_t client_conn_discard_lock; /* Prevent multiple discarders */
88 struct list_head waiting_client_conns;
89 struct list_head active_client_conns;
90 struct list_head idle_client_conns;
91 struct work_struct client_conn_reaper;
92 struct timer_list client_conn_reap_timer;
94 struct list_head local_endpoints;
95 struct mutex local_mutex; /* Lock for ->local_endpoints */
98 spinlock_t peer_hash_lock; /* Lock for ->peer_hash */
101 u8 peer_keepalive_cursor;
102 time64_t peer_keepalive_base;
103 struct list_head peer_keepalive[32];
104 struct list_head peer_keepalive_new;
105 struct timer_list peer_keepalive_timer;
106 struct work_struct peer_keepalive_work;
1023 static inline struct rxrpc_net *rxrpc_net(struct net *net) in rxrpc_net() function