aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaolo Abeni <pabeni@redhat.com>2019-02-21 17:43:58 +0100
committerDavid S. Miller <davem@davemloft.net>2019-02-22 16:05:11 -0800
commit5de362df44d71fc8f6b153ae4eaa2a1284c84490 (patch)
treee1f2e82ffbe42735d83cb79ea6775586763e9e78
parentudpv6: add the required annotation to mib type (diff)
downloadlinux-dev-5de362df44d71fc8f6b153ae4eaa2a1284c84490.tar.xz
linux-dev-5de362df44d71fc8f6b153ae4eaa2a1284c84490.zip
fou6: fix proto error handler argument type
Last argument of gue6_err_proto_handler() has a wrong type annotation, fix it and make sparse happy again. Fixes: b8a51b38e4d4 ("fou, fou6: ICMP error handlers for FoU and GUE") Signed-off-by: Paolo Abeni <pabeni@redhat.com> Acked-by: Stefano Brivio <sbrivio@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv6/fou6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/fou6.c b/net/ipv6/fou6.c
index b858bd5280bf..867474abe269 100644
--- a/net/ipv6/fou6.c
+++ b/net/ipv6/fou6.c
@@ -72,7 +72,7 @@ static int gue6_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
static int gue6_err_proto_handler(int proto, struct sk_buff *skb,
struct inet6_skb_parm *opt,
- u8 type, u8 code, int offset, u32 info)
+ u8 type, u8 code, int offset, __be32 info)
{
const struct inet6_protocol *ipprot;