diff options
author | David Howells <dhowells@redhat.com> | 2022-10-21 14:00:34 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-12-01 14:36:38 +0100 |
commit | 0fde882fc9ee9cc2e66e8c5a5a93c83932d7ca95 (patch) | |
tree | 7ce88fb1771014f930a80241ffd4434df392cd5a /net/rxrpc/conn_object.c | |
parent | rxrpc: Extract the code from a received ABORT packet much earlier (diff) | |
download | linux-0fde882fc9ee9cc2e66e8c5a5a93c83932d7ca95.tar.xz linux-0fde882fc9ee9cc2e66e8c5a5a93c83932d7ca95.zip |
rxrpc: trace: Don't use __builtin_return_address for rxrpc_local tracing
In rxrpc tracing, use enums to generate lists of points of interest rather
than __builtin_return_address() for the rxrpc_local tracepoint
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/conn_object.c')
-rw-r--r-- | net/rxrpc/conn_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/conn_object.c b/net/rxrpc/conn_object.c index ad6e5ee1f069..725359afeac0 100644 --- a/net/rxrpc/conn_object.c +++ b/net/rxrpc/conn_object.c @@ -366,7 +366,7 @@ static void rxrpc_destroy_connection(struct rcu_head *rcu) if (atomic_dec_and_test(&conn->local->rxnet->nr_conns)) wake_up_var(&conn->local->rxnet->nr_conns); - rxrpc_put_local(conn->local); + rxrpc_put_local(conn->local, rxrpc_local_put_kill_conn); kfree(conn); _leave(""); |