diff options
author | David Howells <dhowells@redhat.com> | 2024-01-30 20:30:03 +0000 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2024-03-05 23:35:25 +0000 |
commit | 12a66e77c4999b97a2c2b8f5e4e7533c656cee12 (patch) | |
tree | 6f88adab1b08db1de327927debe368adf1ed924a /net/rxrpc | |
parent | a711d976e1cd7a58a51ecf2816e705fd01fe3489 (diff) | |
download | linux-stable-12a66e77c4999b97a2c2b8f5e4e7533c656cee12.tar.gz linux-stable-12a66e77c4999b97a2c2b8f5e4e7533c656cee12.tar.bz2 linux-stable-12a66e77c4999b97a2c2b8f5e4e7533c656cee12.zip |
rxrpc: Differentiate PING ACK transmission traces.
There are three points that transmit PING ACKs and all of them use the same
trace string. Change two of them to use different strings.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: "David S. Miller" <davem@davemloft.net>
cc: Eric Dumazet <edumazet@google.com>
cc: Jakub Kicinski <kuba@kernel.org>
cc: Paolo Abeni <pabeni@redhat.com>
cc: linux-afs@lists.infradead.org
cc: netdev@vger.kernel.org
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/call_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/call_event.c b/net/rxrpc/call_event.c index ef28ebf37c7d..bc1a5abb7d6f 100644 --- a/net/rxrpc/call_event.c +++ b/net/rxrpc/call_event.c @@ -197,7 +197,7 @@ no_resend: if (ktime_to_us(ack_ts) < (call->peer->srtt_us >> 3)) goto out; rxrpc_send_ACK(call, RXRPC_ACK_PING, 0, - rxrpc_propose_ack_ping_for_lost_ack); + rxrpc_propose_ack_ping_for_0_retrans); goto out; } @@ -387,7 +387,7 @@ bool rxrpc_input_call_event(struct rxrpc_call *call, struct sk_buff *skb) trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now); call->delay_ack_at = now + MAX_JIFFY_OFFSET; rxrpc_send_ACK(call, RXRPC_ACK_DELAY, 0, - rxrpc_propose_ack_ping_for_lost_ack); + rxrpc_propose_ack_delayed_ack); } t = call->ack_lost_at; |