Lines Matching defs:rxrpc_net
63 struct rxrpc_net { struct
64 struct proc_dir_entry *proc_net; /* Subdir in /proc/net */
65 u32 epoch; /* Local epoch for detecting local-end reset */
66 struct list_head calls; /* List of calls active in this namespace */
67 spinlock_t call_lock; /* Lock for ->calls */
68 atomic_t nr_calls; /* Count of allocated calls */
70 atomic_t nr_conns;
71 struct list_head conn_proc_list; /* List of conns in this namespace for proc */
72 struct list_head service_conns; /* Service conns in this namespace */
73 rwlock_t conn_lock; /* Lock for ->conn_proc_list, ->service_conns */
74 struct work_struct service_conn_reaper;
75 struct timer_list service_conn_reap_timer;
77 bool live;
79 atomic_t nr_client_conns;
81 struct hlist_head local_endpoints;
82 struct mutex local_mutex; /* Lock for ->local_endpoints */
85 spinlock_t peer_hash_lock; /* Lock for ->peer_hash */
88 u8 peer_keepalive_cursor;
89 time64_t peer_keepalive_base;
90 struct list_head peer_keepalive[32];
91 struct list_head peer_keepalive_new;
92 struct timer_list peer_keepalive_timer;
93 struct work_struct peer_keepalive_work;
95 atomic_t stat_tx_data;
96 atomic_t stat_tx_data_retrans;
97 atomic_t stat_tx_data_send;
98 atomic_t stat_tx_data_send_frag;
99 atomic_t stat_tx_data_send_fail;
100 atomic_t stat_tx_data_underflow;
101 atomic_t stat_tx_data_cwnd_reset;
102 atomic_t stat_rx_data;
103 atomic_t stat_rx_data_reqack;
104 atomic_t stat_rx_data_jumbo;
106 atomic_t stat_tx_ack_fill;
107 atomic_t stat_tx_ack_send;
108 atomic_t stat_tx_ack_skip;
109 atomic_t stat_tx_acks[256];
110 atomic_t stat_rx_acks[256];
112 atomic_t stat_why_req_ack[8];
114 atomic_t stat_io_loop;
1128 static inline struct rxrpc_net *rxrpc_net(struct net *net) in rxrpc_net() function