aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2016-09-30 03:50:42 -0400
committerDavid Howells <dhowells@redhat.com>2016-09-30 03:51:14 -0400
commit265a44bbf23e4ed1c76409f07595ea88351ba4b3 (patch)
treeaa70b39673e9518a613e816e7f9b51afa1dc57e6
parent803783849fed11e38a30f31932c02c815520da70 (diff)
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 <dhowells@redhat.com>
-rw-r--r--include/trace/events/rxrpc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/trace/events/rxrpc.h b/include/trace/events/rxrpc.h
index 8ba8d76e856a..67f03946ea4a 100644
--- a/include/trace/events/rxrpc.h
+++ b/include/trace/events/rxrpc.h
@@ -280,11 +280,12 @@ TRACE_EVENT(rxrpc_tx_data,
280 __entry->lose = lose; 280 __entry->lose = lose;
281 ), 281 ),
282 282
283 TP_printk("c=%p DATA %08x q=%08x fl=%02x%s", 283 TP_printk("c=%p DATA %08x q=%08x fl=%02x%s%s",
284 __entry->call, 284 __entry->call,
285 __entry->serial, 285 __entry->serial,
286 __entry->seq, 286 __entry->seq,
287 __entry->flags, 287 __entry->flags,
288 __entry->retrans ? " *RETRANS*" : "",
288 __entry->lose ? " *LOSE*" : "") 289 __entry->lose ? " *LOSE*" : "")
289 ); 290 );
290 291