Lines Matching defs:rxrpc_peer
297 struct rxrpc_peer { struct
298 struct rcu_head rcu; /* This must be first */
299 refcount_t ref;
300 unsigned long hash_key;
301 struct hlist_node hash_link;
302 struct rxrpc_local *local;
303 struct hlist_head error_targets; /* targets for net error distribution */
304 struct rb_root service_conns; /* Service connections */
305 struct list_head keepalive_link; /* Link in net->peer_keepalive[] */
306 time64_t last_tx_at; /* Last time packet sent here */
307 seqlock_t service_conn_lock;
308 spinlock_t lock; /* access lock */
309 unsigned int if_mtu; /* interface MTU for this peer */
310 unsigned int mtu; /* network MTU for this peer */
311 unsigned int maxdata; /* data size (MTU - hdrsize) */
312 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
313 int debug_id; /* debug ID for printks */
314 struct sockaddr_rxrpc srx; /* remote address */
318 spinlock_t rtt_input_lock; /* RTT lock for input routine */
319 ktime_t rtt_last_req; /* Time of last RTT request */
320 unsigned int rtt_count; /* Number of samples we've got */
322 u32 srtt_us; /* smoothed round trip time << 3 in usecs */
323 u32 mdev_us; /* medium deviation */
347 struct rxrpc_peer *peer; /* Remote endpoint */ argument