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