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