diff options
author | David Howells <dhowells@redhat.com> | 2016-09-17 09:49:14 (GMT) |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-09-17 10:24:03 (GMT) |
commit | 363deeab6d0f308d33d011323661ae9cf5f9f8d6 (patch) | |
tree | 65e374e65719b9dc56b39fb48b574ec1d8713592 /net/rxrpc/conn_service.c | |
parent | a84a46d73050f70fd8820c74840e2815c78d8690 (diff) | |
download | linux-363deeab6d0f308d33d011323661ae9cf5f9f8d6.tar.xz |
rxrpc: Add connection tracepoint and client conn state tracepoint
Add a pair of tracepoints, one to track rxrpc_connection struct ref
counting and the other to track the client connection cache state.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/conn_service.c')
-rw-r--r-- | net/rxrpc/conn_service.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/rxrpc/conn_service.c b/net/rxrpc/conn_service.c index 83d54da..eef551f 100644 --- a/net/rxrpc/conn_service.c +++ b/net/rxrpc/conn_service.c @@ -136,6 +136,10 @@ struct rxrpc_connection *rxrpc_prealloc_service_connection(gfp_t gfp) list_add_tail(&conn->link, &rxrpc_connections); list_add_tail(&conn->proc_link, &rxrpc_connection_proc_list); write_unlock(&rxrpc_connection_lock); + + trace_rxrpc_conn(conn, rxrpc_conn_new_service, + atomic_read(&conn->usage), + __builtin_return_address(0)); } return conn; |