diff options
author | Gal Pressman <gal@nvidia.com> | 2021-12-16 11:28:25 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-12-16 11:08:15 +0000 |
commit | 8a03ef676ade55182f9b05115763aeda6dc08159 (patch) | |
tree | bd3bf389e94c9784ca5e57b2b6d9572783e77e9f /net | |
parent | 053c9e18c6f9cf82242ef35ac21cae1842725714 (diff) | |
download | linux-stable-8a03ef676ade55182f9b05115763aeda6dc08159.tar.gz linux-stable-8a03ef676ade55182f9b05115763aeda6dc08159.tar.bz2 linux-stable-8a03ef676ade55182f9b05115763aeda6dc08159.zip |
net: Fix double 0x prefix print in SKB dump
When printing netdev features %pNF already takes care of the 0x prefix,
remove the explicit one.
Fixes: 6413139dfc64 ("skbuff: increase verbosity when dumping skb data")
Signed-off-by: Gal Pressman <gal@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/skbuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index ba2f38246f07..909db87d7383 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -832,7 +832,7 @@ void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt) ntohs(skb->protocol), skb->pkt_type, skb->skb_iif); if (dev) - printk("%sdev name=%s feat=0x%pNF\n", + printk("%sdev name=%s feat=%pNF\n", level, dev->name, &dev->features); if (sk) printk("%ssk family=%hu type=%u proto=%u\n", |