aboutsummaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorGravatar Takashi Sakamoto <o-takashi@sakamocchi.jp> 2024-05-06 17:21:54 +0900
committerGravatar Takashi Sakamoto <o-takashi@sakamocchi.jp> 2024-05-06 17:53:35 +0900
commit5a5dc48083dae07e3079e4ded731388214729f64 (patch)
treec105780c5263b89311d28988fc4684b733807aa2 /include/trace
parentfirewire: core: fix type of timestamp for async_inbound_template tracepoints ... (diff)
downloadlinux-5a5dc48083dae07e3079e4ded731388214729f64.tar.gz
linux-5a5dc48083dae07e3079e4ded731388214729f64.tar.bz2
linux-5a5dc48083dae07e3079e4ded731388214729f64.zip
firewire: core: remove flag and width from u64 formats of tracepoints events
The pointer to fw_packet structure is passed to ring buffer of tracepoints framework as the value of u64 type. '0x%016llx' is used for the print format of value, while the flag and width are useless in the case. This commit removes them. Link: https://lore.kernel.org/r/20240506082154.396077-2-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/firewire.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/firewire.h b/include/trace/events/firewire.h
index 9e79c864fff6..d695a560673f 100644
--- a/include/trace/events/firewire.h
+++ b/include/trace/events/firewire.h
@@ -221,7 +221,7 @@ TRACE_EVENT(async_phy_outbound_initiate,
__entry->second_quadlet = second_quadlet
),
TP_printk(
- "packet=0x%016llx generation=%u first_quadlet=0x%08x second_quadlet=0x%08x",
+ "packet=0x%llx generation=%u first_quadlet=0x%08x second_quadlet=0x%08x",
__entry->packet,
__entry->generation,
__entry->first_quadlet,
@@ -245,7 +245,7 @@ TRACE_EVENT(async_phy_outbound_complete,
__entry->timestamp = timestamp;
),
TP_printk(
- "packet=0x%016llx generation=%u status=%u timestamp=0x%04x",
+ "packet=0x%llx generation=%u status=%u timestamp=0x%04x",
__entry->packet,
__entry->generation,
__entry->status,
@@ -273,7 +273,7 @@ TRACE_EVENT(async_phy_inbound,
__entry->second_quadlet = second_quadlet
),
TP_printk(
- "packet=0x%016llx generation=%u status=%u timestamp=0x%04x first_quadlet=0x%08x second_quadlet=0x%08x",
+ "packet=0x%llx generation=%u status=%u timestamp=0x%04x first_quadlet=0x%08x second_quadlet=0x%08x",
__entry->packet,
__entry->generation,
__entry->status,