Lines Matching defs:call
460 * rxrpc_kernel_get_peer - Get the peer address of a call
461 * @sock: The socket on which the call is in progress.
462 * @call: The call to query
465 * Get the address of the remote peer in a call.
467 void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
470 *_srx = call->peer->srx;
475 * rxrpc_kernel_get_srtt - Get a call's peer smoothed RTT
476 * @sock: The socket on which the call is in progress.
477 * @call: The call to query
480 * Get the call's peer smoothed RTT in uS.
482 bool rxrpc_kernel_get_srtt(struct socket *sock, struct rxrpc_call *call,
485 struct rxrpc_peer *peer = call->peer;
492 *_srtt = call->peer->srtt_us >> 3;