Lines Matching defs:rxrpc_local
285 struct rxrpc_local { struct
286 struct rcu_head rcu;
287 atomic_t active_users; /* Number of users of the local endpoint */
288 refcount_t ref; /* Number of references to the structure */
289 struct net *net; /* The network namespace */
290 struct rxrpc_net *rxnet; /* Our bits in the network namespace */
291 struct hlist_node link;
292 struct socket *socket; /* my UDP socket */
293 struct task_struct *io_thread;
294 struct completion io_thread_ready; /* Indication that the I/O thread started */
295 struct rxrpc_sock *service; /* Service(s) listening on this endpoint */
297 struct sk_buff_head rx_delay_queue; /* Delay injection queue */
299 struct sk_buff_head rx_queue; /* Received packets */
300 struct list_head conn_attend_q; /* Conns requiring immediate attention */
301 struct list_head call_attend_q; /* Calls requiring immediate attention */
303 struct rb_root client_bundles; /* Client connection bundles by socket params */
304 spinlock_t client_bundles_lock; /* Lock for client_bundles */
305 bool kill_all_client_conns;
306 struct list_head idle_client_conns;
307 struct timer_list client_conn_reap_timer;
331 struct rxrpc_local *local; argument