diff options
author | David Howells <dhowells@redhat.com> | 2019-08-09 15:20:41 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2019-08-09 15:24:00 +0100 |
commit | e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485 (patch) | |
tree | 68a882926d1b201fedac56de7244320b8b86729a /net/rxrpc/af_rxrpc.c | |
parent | 730c5fd42c1e3652a065448fd235cb9fafb2bd10 (diff) | |
download | linux-e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485.tar.gz linux-e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485.tar.bz2 linux-e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485.zip |
rxrpc: Don't bother generating maxSkew in the ACK packet
Don't bother generating maxSkew in the ACK packet as it has been obsolete
since AFS 3.1.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeffrey Altman <jaltman@auristor.com>
Diffstat (limited to 'net/rxrpc/af_rxrpc.c')
-rw-r--r-- | net/rxrpc/af_rxrpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/af_rxrpc.c b/net/rxrpc/af_rxrpc.c index 8c9bd3ae9edf..0dbbfd1b6487 100644 --- a/net/rxrpc/af_rxrpc.c +++ b/net/rxrpc/af_rxrpc.c @@ -402,7 +402,7 @@ EXPORT_SYMBOL(rxrpc_kernel_check_life); */ void rxrpc_kernel_probe_life(struct socket *sock, struct rxrpc_call *call) { - rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, 0, true, false, + rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, true, false, rxrpc_propose_ack_ping_for_check_life); rxrpc_send_ack_packet(call, true, NULL); } |