From: stephen hemminger Date: Fri, 19 May 2017 16:55:49 +0000 (-0700) Subject: ila: propagate error code in ila_output X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9e7b19c51681f041af418ee87e5bc7b4b67e3318;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ila: propagate error code in ila_output This warning: net/ipv6/ila/ila_lwt.c: In function ‘ila_output’: net/ipv6/ila/ila_lwt.c:42:6: warning: variable ‘err’ set but not used [-Wunused-but-set-variable] It looks like the code attempts to set propagate different error values, but always returned -EINVAL. Compile tested only. Needs review by original author. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ila/ila_lwt.c b/net/ipv6/ila/ila_lwt.c index b3df03e3faa0..f4a413aba423 100644 --- a/net/ipv6/ila/ila_lwt.c +++ b/net/ipv6/ila/ila_lwt.c @@ -91,7 +91,7 @@ static int ila_output(struct net *net, struct sock *sk, struct sk_buff *skb) drop: kfree_skb(skb); - return -EINVAL; + return err; } static int ila_input(struct sk_buff *skb)