diff options
author | David Howells <dhowells@redhat.com> | 2022-04-22 00:20:49 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-11-08 16:42:15 +0000 |
commit | 334dfbfc5a7187c99761df2392dd4cc49c453bea (patch) | |
tree | e5406613235e4bcc8aa6e868bd615f3e359004bb /net/rxrpc/call_object.c | |
parent | 4d843be56ba6a8c0e566afd58775742d9e721505 (diff) | |
download | lwn-334dfbfc5a7187c99761df2392dd4cc49c453bea.tar.gz lwn-334dfbfc5a7187c99761df2392dd4cc49c453bea.zip |
rxrpc: Split call timer-expiration from call timer-set tracepoint
Split the tracepoint for call timer-set to separate out the call
timer-expiration event
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
Diffstat (limited to 'net/rxrpc/call_object.c')
-rw-r--r-- | net/rxrpc/call_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/call_object.c b/net/rxrpc/call_object.c index 6401cdf7a624..a75861a0c477 100644 --- a/net/rxrpc/call_object.c +++ b/net/rxrpc/call_object.c @@ -52,7 +52,7 @@ static void rxrpc_call_timer_expired(struct timer_list *t) _enter("%d", call->debug_id); if (call->state < RXRPC_CALL_COMPLETE) { - trace_rxrpc_timer(call, rxrpc_timer_expired, jiffies); + trace_rxrpc_timer_expired(call, jiffies); __rxrpc_queue_call(call); } else { rxrpc_put_call(call, rxrpc_call_put); |