From: Borislav Petkov <b...@suse.de> Move the local variable 'ret' into the IP_VS_IPV6 ifdef so that the unused variable warning doesn't fire for randconfig builds with CONFIG_IP_VS_IPV6 disabled.
Fixes: 098e13f5b21d ("ipvs: fix dependency on nf_defrag_ipv6") Cc: Andrea Claudi <acla...@redhat.com> Cc: coret...@netfilter.org Cc: Florian Westphal <f...@strlen.de> Cc: Jozsef Kadlecsik <kad...@blackhole.kfki.hu> Cc: Julian Anastasov <j...@ssi.bg> Cc: Li Shuang <shu...@redhat.com> Cc: netfilter-de...@vger.kernel.org Cc: Pablo Neira Ayuso <pa...@netfilter.org> Cc: Simon Horman <ho...@verge.net.au> Signed-off-by: Borislav Petkov <b...@suse.de> --- net/netfilter/ipvs/ip_vs_ctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c index 86afacb07e5f..ac8d848d7624 100644 --- a/net/netfilter/ipvs/ip_vs_ctl.c +++ b/net/netfilter/ipvs/ip_vs_ctl.c @@ -896,12 +896,13 @@ ip_vs_new_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest, { struct ip_vs_dest *dest; unsigned int atype, i; - int ret = 0; EnterFunction(2); #ifdef CONFIG_IP_VS_IPV6 if (udest->af == AF_INET6) { + int ret; + atype = ipv6_addr_type(&udest->addr.in6); if ((!(atype & IPV6_ADDR_UNICAST) || atype & IPV6_ADDR_LINKLOCAL) && -- 2.19.1