diff options
author | David Howells <dhowells@redhat.com> | 2018-07-23 17:18:37 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2018-08-01 13:28:23 +0100 |
commit | 197445aff13c164794efb6d87a28762e843622d8 (patch) | |
tree | c981343b9583af54eeb7b580c53d827d64cce03c | |
parent | 4764c0da69dc500791c840c88dfd940d13b452e7 (diff) | |
download | linux-stable-197445aff13c164794efb6d87a28762e843622d8.tar.gz linux-stable-197445aff13c164794efb6d87a28762e843622d8.tar.bz2 linux-stable-197445aff13c164794efb6d87a28762e843622d8.zip |
rxrpc: Fix ACK proposal tracepoint
Fix the ACK proposal tracepoint outcomes list by making the one that's an
empty string not an empty string - which gets rendered as a hex number
string instead.
Signed-off-by: David Howells <dhowells@redhat.com>
-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 2aa6f615b60d..c1a800a6dee3 100644 --- a/include/trace/events/rxrpc.h +++ b/include/trace/events/rxrpc.h @@ -396,7 +396,7 @@ enum rxrpc_tx_point { #define rxrpc_propose_ack_outcomes \ EM(rxrpc_propose_ack_subsume, " Subsume") \ EM(rxrpc_propose_ack_update, " Update") \ - E_(rxrpc_propose_ack_use, "") + E_(rxrpc_propose_ack_use, " New") #define rxrpc_congest_modes \ EM(RXRPC_CALL_CONGEST_AVOIDANCE, "CongAvoid") \ |