From: David Howells Date: Fri, 30 Sep 2016 07:50:42 +0000 (+0100) Subject: rxrpc: Actually display the tx_data trace retransmission note X-Git-Tag: v5.15~12760^2~15^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=265a44bbf23e4ed1c76409f07595ea88351ba4b3;p=platform%2Fkernel%2Flinux-starfive.git rxrpc: Actually display the tx_data trace retransmission note Actually display in the tx_data trace the retransmission note added in a previous patch. Signed-off-by: David Howells --- diff --git a/include/trace/events/rxrpc.h b/include/trace/events/rxrpc.h index 8ba8d76..67f0394 100644 --- a/include/trace/events/rxrpc.h +++ b/include/trace/events/rxrpc.h @@ -280,11 +280,12 @@ TRACE_EVENT(rxrpc_tx_data, __entry->lose = lose; ), - TP_printk("c=%p DATA %08x q=%08x fl=%02x%s", + TP_printk("c=%p DATA %08x q=%08x fl=%02x%s%s", __entry->call, __entry->serial, __entry->seq, __entry->flags, + __entry->retrans ? " *RETRANS*" : "", __entry->lose ? " *LOSE*" : "") );