Lines Matching defs:call
493 * rxrpc_kernel_get_peer - Get the peer address of a call
494 * @sock: The socket on which the call is in progress.
495 * @call: The call to query
498 * Get the address of the remote peer in a call.
500 void rxrpc_kernel_get_peer(struct socket *sock, struct rxrpc_call *call,
503 *_srx = call->peer->srx;
508 * rxrpc_kernel_get_srtt - Get a call's peer smoothed RTT
509 * @sock: The socket on which the call is in progress.
510 * @call: The call to query
513 * Get the call's peer smoothed RTT in uS.
515 bool rxrpc_kernel_get_srtt(struct socket *sock, struct rxrpc_call *call,
518 struct rxrpc_peer *peer = call->peer;
525 *_srtt = call->peer->srtt_us >> 3;