diff options
author | David Howells <dhowells@redhat.com> | 2022-12-15 17:20:30 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-12-19 10:51:31 +0100 |
commit | c838f1a73d77abadb0810eff0e150ac88fef3da5 (patch) | |
tree | 4d16a2f0b950058ed9cd0292077bcfc1219a72cb /include/trace | |
parent | rxrpc: Fix locking issues in rxrpc_put_peer_locked() (diff) | |
download | linux-c838f1a73d77abadb0810eff0e150ac88fef3da5.tar.xz linux-c838f1a73d77abadb0810eff0e150ac88fef3da5.zip |
rxrpc: Fix switched parameters in peer tracing
Fix the switched parameters on rxrpc_alloc_peer() and rxrpc_get_peer().
The ref argument and the why argument got mixed.
Fixes: 47c810a79844 ("rxrpc: trace: Don't use __builtin_return_address for rxrpc_peer tracing")
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Marc Dionne <marc.dionne@auristor.com>
cc: linux-afs@lists.infradead.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/rxrpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/rxrpc.h b/include/trace/events/rxrpc.h index 049b52e7aa6a..c6cfed00d0c6 100644 --- a/include/trace/events/rxrpc.h +++ b/include/trace/events/rxrpc.h @@ -471,7 +471,7 @@ TRACE_EVENT(rxrpc_peer, TP_STRUCT__entry( __field(unsigned int, peer ) __field(int, ref ) - __field(int, why ) + __field(enum rxrpc_peer_trace, why ) ), TP_fast_assign( |