summaryrefslogtreecommitdiff
path: root/net/core
diff options
context:
space:
mode:
authorGal Pressman <gal@nvidia.com>2021-12-16 11:28:25 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-22 09:29:38 +0100
commit56a6ffea18c2b9ae2e4b0ae316fcbc78ff94374a (patch)
tree3bc55b1523c77c756fd34940cea7813f22dbaecf /net/core
parent027a13973dadb64ef4f19db56c9b619ee82c3375 (diff)
net: Fix double 0x prefix print in SKB dump
[ Upstream commit 8a03ef676ade55182f9b05115763aeda6dc08159 ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/skbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index 7dba091bc861..ac083685214e 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -768,7 +768,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",