Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <cong.wang@bytedance.com>
Signed-off-by: Qitao Xu <qitao.xu@bytedance.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Qitao Xu and committed by
David S. Miller
65875073 e7efc2ce

+1 -1
+1 -1
include/trace/events/net.h
··· 136 136 __assign_str(name, skb->dev->name); 137 137 ), 138 138 139 - TP_printk("dev=%s skbaddr=%p len=%u", 139 + TP_printk("dev=%s skbaddr=%px len=%u", 140 140 __get_str(name), __entry->skbaddr, __entry->len) 141 141 ) 142 142