Lines Matching defs:rxrpc_peer
284 struct rxrpc_peer { struct
285 struct rcu_head rcu; /* This must be first */
286 atomic_t usage;
287 unsigned long hash_key;
288 struct hlist_node hash_link;
289 struct rxrpc_local *local;
290 struct hlist_head error_targets; /* targets for net error distribution */
291 struct rb_root service_conns; /* Service connections */
292 struct list_head keepalive_link; /* Link in net->peer_keepalive[] */
293 time64_t last_tx_at; /* Last time packet sent here */
294 seqlock_t service_conn_lock;
295 spinlock_t lock; /* access lock */
296 unsigned int if_mtu; /* interface MTU for this peer */
297 unsigned int mtu; /* network MTU for this peer */
298 unsigned int maxdata; /* data size (MTU - hdrsize) */
299 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
300 int debug_id; /* debug ID for printks */
301 struct sockaddr_rxrpc srx; /* remote address */
305 spinlock_t rtt_input_lock; /* RTT lock for input routine */
306 ktime_t rtt_last_req; /* Time of last RTT request */
307 u64 rtt; /* Current RTT estimate (in nS) */
331 struct rxrpc_peer *peer; /* Remote endpoint */ argument