aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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