aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorYueHaibing <yuehaibing@huawei.com>2018-08-08 19:40:31 +0800
committerDavid S. Miller <davem@davemloft.net>2018-08-09 14:10:01 -0700
commit15693fd37fc3a49da356164ed15b571c175efc34 (patch)
treefb04a82ceb65de36db10e07883d373a0ce0714b2 /include/linux/skbuff.h
parentbe2net: Use Kconfig flag to support for enabling/disabling adapters (diff)
downloadlinux-dev-15693fd37fc3a49da356164ed15b571c175efc34.tar.xz
linux-dev-15693fd37fc3a49da356164ed15b571c175efc34.zip
net: skbuff.h: fix using plain integer as NULL warning
Fixes the following sparse warning: ./include/linux/skbuff.h:2365:58: warning: Using plain integer as NULL pointer Signed-off-by: YueHaibing <yuehaibing@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 7ebdf158a795..7e237a63a70c 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -2362,7 +2362,7 @@ static inline void skb_probe_transport_header(struct sk_buff *skb,
if (skb_transport_header_was_set(skb))
return;
- if (skb_flow_dissect_flow_keys_basic(skb, &keys, 0, 0, 0, 0, 0))
+ if (skb_flow_dissect_flow_keys_basic(skb, &keys, NULL, 0, 0, 0, 0))
skb_set_transport_header(skb, keys.control.thoff);
else
skb_set_transport_header(skb, offset_hint);