mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
skbuff: fix compilation warnings in skb_dump()
The commit6413139dfc
("skbuff: increase verbosity when dumping skb data") introduced a few compilation warnings. net/core/skbuff.c:766:32: warning: format specifies type 'unsigned short' but the argument has type 'unsigned int' [-Wformat] level, sk->sk_family, sk->sk_type, sk->sk_protocol); ^~~~~~~~~~~ net/core/skbuff.c:766:45: warning: format specifies type 'unsigned short' but the argument has type 'unsigned int' [-Wformat] level, sk->sk_family, sk->sk_type, sk->sk_protocol); ^~~~~~~~~~~~~~~ Fix them by using the proper types. Fixes:6413139dfc
("skbuff: increase verbosity when dumping skb data") Signed-off-by: Qian Cai <cai@lca.pw> Reviewed-by: Nathan Chancellor <natechancellor@gmail.com> Acked-by: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7429c6c0d9
commit
db8051f30f
@ -762,7 +762,7 @@ void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt)
|
||||
printk("%sdev name=%s feat=0x%pNF\n",
|
||||
level, dev->name, &dev->features);
|
||||
if (sk)
|
||||
printk("%ssk family=%hu type=%hu proto=%hu\n",
|
||||
printk("%ssk family=%hu type=%u proto=%u\n",
|
||||
level, sk->sk_family, sk->sk_type, sk->sk_protocol);
|
||||
|
||||
if (full_pkt && headroom)
|
||||
|
Loading…
Reference in New Issue
Block a user