diff options
author | David Howells <dhowells@redhat.com> | 2016-09-24 20:05:27 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-09-25 01:49:46 +0300 |
commit | dd7c1ee59a90ca8a75bce72c721851d5550f3c59 (patch) | |
tree | 434537911ce88bd06b644980151336a78aa9e3df /net/rxrpc/misc.c | |
parent | b69d94d7991f83928d3ea18fe12ab011fa852bb0 (diff) | |
download | linux-dd7c1ee59a90ca8a75bce72c721851d5550f3c59.tar.xz |
rxrpc: Reinitialise the call ACK and timer state for client reply phase
Clear the ACK reason, ACK timer and resend timer when entering the client
reply phase when the first DATA packet is received. New ACKs will be
proposed once the data is queued.
The resend timer is no longer relevant and we need to cancel ACKs scheduled
to probe for a lost reply.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/misc.c')
-rw-r--r-- | net/rxrpc/misc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rxrpc/misc.c b/net/rxrpc/misc.c index a473fd7dabaa..901c012a2700 100644 --- a/net/rxrpc/misc.c +++ b/net/rxrpc/misc.c @@ -191,6 +191,7 @@ const char rxrpc_rtt_rx_traces[rxrpc_rtt_rx__nr_trace][5] = { const char rxrpc_timer_traces[rxrpc_timer__nr_trace][8] = { [rxrpc_timer_begin] = "Begin ", [rxrpc_timer_expired] = "*EXPR*", + [rxrpc_timer_init_for_reply] = "IniRpl", [rxrpc_timer_set_for_ack] = "SetAck", [rxrpc_timer_set_for_send] = "SetTx ", [rxrpc_timer_set_for_resend] = "SetRTx", |