summaryrefslogtreecommitdiffstats
path: root/include/trace/events/rxrpc.h
diff options
context:
space:
mode:
authorDavid Howells2016-09-30 09:50:42 +0200
committerDavid Howells2016-09-30 09:51:14 +0200
commit265a44bbf23e4ed1c76409f07595ea88351ba4b3 (patch)
treeaa70b39673e9518a613e816e7f9b51afa1dc57e6 /include/trace/events/rxrpc.h
parentmlx5: Add ndo_poll_controller() implementation (diff)
downloadkernel-qcow2-linux-265a44bbf23e4ed1c76409f07595ea88351ba4b3.tar.gz
kernel-qcow2-linux-265a44bbf23e4ed1c76409f07595ea88351ba4b3.tar.xz
kernel-qcow2-linux-265a44bbf23e4ed1c76409f07595ea88351ba4b3.zip
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>
Diffstat (limited to 'include/trace/events/rxrpc.h')
-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,
__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*" : "")
);