diff options
author | David Howells <dhowells@redhat.com> | 2016-09-17 10:49:13 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-09-17 11:24:03 +0100 |
commit | 58dc63c998ea3c5a27e2bf9251eddbf0977056a6 (patch) | |
tree | 8567efc32e9fb834e90290adcb3ff3a7a1f06610 /net/rxrpc/misc.c | |
parent | f3639df2d90bc919328c459b3c7c49ed5667a52f (diff) | |
download | linux-stable-58dc63c998ea3c5a27e2bf9251eddbf0977056a6.tar.gz linux-stable-58dc63c998ea3c5a27e2bf9251eddbf0977056a6.tar.bz2 linux-stable-58dc63c998ea3c5a27e2bf9251eddbf0977056a6.zip |
rxrpc: Add a tracepoint to follow packets in the Rx buffer
Add a tracepoint to follow the life of packets that get added to a call's
receive buffer.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/misc.c')
-rw-r--r-- | net/rxrpc/misc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/rxrpc/misc.c b/net/rxrpc/misc.c index dca89995f03e..db5f1d54fc90 100644 --- a/net/rxrpc/misc.c +++ b/net/rxrpc/misc.c @@ -141,3 +141,12 @@ const char rxrpc_transmit_traces[rxrpc_transmit__nr_trace][4] = { [rxrpc_transmit_rotate] = "ROT", [rxrpc_transmit_end] = "END", }; + +const char rxrpc_receive_traces[rxrpc_receive__nr_trace][4] = { + [rxrpc_receive_incoming] = "INC", + [rxrpc_receive_queue] = "QUE", + [rxrpc_receive_queue_last] = "QLS", + [rxrpc_receive_front] = "FRN", + [rxrpc_receive_rotate] = "ROT", + [rxrpc_receive_end] = "END", +}; |