Commit 265a44bb authored by David Howells's avatar David Howells
Browse files

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: default avatarDavid Howells <dhowells@redhat.com>
parent 80378384
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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*" : "")
	    );