Skip to content

Commit 6587507

Browse files
Qitao Xudavem330
authored andcommitted
net: use %px to print skb address in trace_netif_receive_skb
The print format of skb adress in tracepoint class net_dev_template is changed to %px from %p, because we want to use skb address as a quick way to identify a packet. Note, trace ring buffer is only accessible to privileged users, it is safe to use a real kernel address here. Reviewed-by: Cong Wang <[email protected]> Signed-off-by: Qitao Xu <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent e7efc2c commit 6587507

File tree

1 file changed

+1
-1
lines changed
  • include/trace/events

1 file changed

+1
-1
lines changed

include/trace/events/net.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ DECLARE_EVENT_CLASS(net_dev_template,
136136
__assign_str(name, skb->dev->name);
137137
),
138138

139-
TP_printk("dev=%s skbaddr=%p len=%u",
139+
TP_printk("dev=%s skbaddr=%px len=%u",
140140
__get_str(name), __entry->skbaddr, __entry->len)
141141
)
142142

0 commit comments

Comments
 (0)