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/output.c | |
parent | 730c5fd42c1e3652a065448fd235cb9fafb2bd10 (diff) | |
download | linux-stable-e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485.tar.gz linux-stable-e8c3af6bb33a9e4b56920ee00aef92eb5e4cf485.tar.bz2 linux-stable-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/output.c')
-rw-r--r-- | net/rxrpc/output.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/rxrpc/output.c b/net/rxrpc/output.c index 948e3fe249ec..369e516c4bdf 100644 --- a/net/rxrpc/output.c +++ b/net/rxrpc/output.c @@ -87,7 +87,7 @@ static size_t rxrpc_fill_out_ack(struct rxrpc_connection *conn, *_top = top; pkt->ack.bufferSpace = htons(8); - pkt->ack.maxSkew = htons(call->ackr_skew); + pkt->ack.maxSkew = htons(0); pkt->ack.firstPacket = htonl(hard_ack + 1); pkt->ack.previousPacket = htonl(call->ackr_prev_seq); pkt->ack.serial = htonl(serial); @@ -228,7 +228,6 @@ int rxrpc_send_ack_packet(struct rxrpc_call *call, bool ping, if (ping) clear_bit(RXRPC_CALL_PINGING, &call->flags); rxrpc_propose_ACK(call, pkt->ack.reason, - ntohs(pkt->ack.maxSkew), ntohl(pkt->ack.serial), false, true, rxrpc_propose_ack_retry_tx); |