mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
rxrpc: Fix trace string
commitaadf9dcef9upstream. The trace symbol printer (__print_symbolic()) ignores symbols that map to an empty string and prints the hex value instead. Fix the symbol for rxrpc_cong_no_change to " -" instead of "" to avoid this. Fixes:b54a134a7d("rxrpc: Fix handling of enums-to-string translation in tracing") Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4cb7718803
commit
d3fa6917aa
|
|
@ -408,7 +408,7 @@ enum rxrpc_tx_point {
|
|||
EM(rxrpc_cong_begin_retransmission, " Retrans") \
|
||||
EM(rxrpc_cong_cleared_nacks, " Cleared") \
|
||||
EM(rxrpc_cong_new_low_nack, " NewLowN") \
|
||||
EM(rxrpc_cong_no_change, "") \
|
||||
EM(rxrpc_cong_no_change, " -") \
|
||||
EM(rxrpc_cong_progress, " Progres") \
|
||||
EM(rxrpc_cong_retransmit_again, " ReTxAgn") \
|
||||
EM(rxrpc_cong_rtt_window_end, " RttWinE") \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user