Lines Matching defs:rxrpc_peer
282 struct rxrpc_peer { struct
283 struct rcu_head rcu; /* This must be first */
284 refcount_t ref;
285 unsigned long hash_key;
286 struct hlist_node hash_link;
287 struct rxrpc_local *local;
288 struct hlist_head error_targets; /* targets for net error distribution */
289 struct rb_root service_conns; /* Service connections */
290 struct list_head keepalive_link; /* Link in net->peer_keepalive[] */
291 time64_t last_tx_at; /* Last time packet sent here */
292 seqlock_t service_conn_lock;
293 spinlock_t lock; /* access lock */
294 unsigned int if_mtu; /* interface MTU for this peer */
295 unsigned int mtu; /* network MTU for this peer */
296 unsigned int maxdata; /* data size (MTU - hdrsize) */
297 unsigned short hdrsize; /* header size (IP + UDP + RxRPC) */
298 int debug_id; /* debug ID for printks */
299 struct sockaddr_rxrpc srx; /* remote address */
303 spinlock_t rtt_input_lock; /* RTT lock for input routine */
304 ktime_t rtt_last_req; /* Time of last RTT request */
305 unsigned int rtt_count; /* Number of samples we've got */
307 u32 srtt_us; /* smoothed round trip time << 3 in usecs */
308 u32 mdev_us; /* medium deviation */
332 struct rxrpc_peer *peer; /* Remote endpoint */ argument