diff mbox

[nf-next] ipvs: fix build error when CONFIG_IP_VS_IPV6 is disabled

Message ID 20121022121711.31397.6231.stgit@dragon
State Superseded
Headers show

Commit Message

Jesper Dangaard Brouer Oct. 22, 2012, 12:17 p.m. UTC
From: Yuanhan Liu <yuanhan.liu@linux.intel.com>

Fix build error introduced by commit 63dca2c0:
 "ipvs: Fix faulty IPv6 extension header handling in IPVS"

The build error only occur, when CONFIG_IP_VS_IPV6 is disabled.

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
---

 include/net/ip_vs.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Jesper Dangaard Brouer Oct. 22, 2012, 3:39 p.m. UTC | #1
Hi Pablo,

Argh - there is one more CONFIG option combi that can cause issues.

  *So hold off on this patch*

Which is related to including linux/netfilter_ipv6/ip6_tables.h under 
CONFIG_IPV6 when CONFIG_NETFILTER is disabled, as kernel/sysctl_binary.c 
include net/ip_vs.h.  I'll send a new patch soon!

--Jesper


On Mon, 22 Oct 2012, Jesper Dangaard Brouer wrote:

> From: Yuanhan Liu <yuanhan.liu@linux.intel.com>
>
> Fix build error introduced by commit 63dca2c0:
> "ipvs: Fix faulty IPv6 extension header handling in IPVS"
>
> The build error only occur, when CONFIG_IP_VS_IPV6 is disabled.
>
> Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
> Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com>
> ---
>
> include/net/ip_vs.h |    3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
> index a681ad6..d930749 100644
> --- a/include/net/ip_vs.h
> +++ b/include/net/ip_vs.h
> @@ -212,8 +212,9 @@ ip_vs_fill_iph_addr_only(int af, const struct sk_buff *skb,
> 			(struct ipv6hdr *)skb_network_header(skb);
> 		iphdr->saddr.in6 = iph->saddr;
> 		iphdr->daddr.in6 = iph->daddr;
> -	} else {
> +	} else
> #endif
> +	{
> 		const struct iphdr *iph =
> 			(struct iphdr *)skb_network_header(skb);
> 		iphdr->saddr.ip = iph->saddr;
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

Hilsen
   Jesper Brouer

--
-------------------------------------------------------------------
MSc. Master of Computer Science
Dept. of Computer Science, University of Copenhagen
Author of http://www.adsl-optimizer.dk
-------------------------------------------------------------------
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Pablo Neira Ayuso Oct. 22, 2012, 4:30 p.m. UTC | #2
On Mon, Oct 22, 2012 at 05:39:43PM +0200, Jesper Dangaard Brouer wrote:
> 
> Hi Pablo,
> 
> Argh - there is one more CONFIG option combi that can cause issues.
> 
>  *So hold off on this patch*
> 
> Which is related to including linux/netfilter_ipv6/ip6_tables.h
> under CONFIG_IPV6 when CONFIG_NETFILTER is disabled, as
> kernel/sysctl_binary.c include net/ip_vs.h.  I'll send a new patch
> soon!

Ok, wait for it.

Thanks for your quick response.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Jesper Dangaard Brouer Oct. 22, 2012, 7:24 p.m. UTC | #3
On Mon, 2012-10-22 at 18:30 +0200, Pablo Neira Ayuso wrote:
> On Mon, Oct 22, 2012 at 05:39:43PM +0200, Jesper Dangaard Brouer wrote:
> > 
> > Hi Pablo,
> > 
> > Argh - there is one more CONFIG option combi that can cause issues.
> > 
> >  *So hold off on this patch*
> > 
> > Which is related to including linux/netfilter_ipv6/ip6_tables.h
> > under CONFIG_IPV6 when CONFIG_NETFILTER is disabled, as
> > kernel/sysctl_binary.c include net/ip_vs.h.  I'll send a new patch
> > soon!
> 
> Ok, wait for it.

Posted with subj.:
 [nf-next PATCH v2] ipvs: fix build errors related to config option combinations

(Again, I'm very sorry for letting this slip through...)


--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
index a681ad6..d930749 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -212,8 +212,9 @@  ip_vs_fill_iph_addr_only(int af, const struct sk_buff *skb,
 			(struct ipv6hdr *)skb_network_header(skb);
 		iphdr->saddr.in6 = iph->saddr;
 		iphdr->daddr.in6 = iph->daddr;
-	} else {
+	} else
 #endif
+	{
 		const struct iphdr *iph =
 			(struct iphdr *)skb_network_header(skb);
 		iphdr->saddr.ip = iph->saddr;