All of lore.kernel.org
 help / color / mirror / Atom feed
* [nf-next PATCH] ipvs: fix build error when CONFIG_IP_VS_IPV6 is disabled
@ 2012-10-22 12:17 Jesper Dangaard Brouer
  2012-10-22 15:39 ` Jesper Dangaard Brouer
  0 siblings, 1 reply; 4+ messages in thread
From: Jesper Dangaard Brouer @ 2012-10-22 12:17 UTC (permalink / raw)
  To: Pablo Neira Ayuso, Simon Horman
  Cc: Jesper Dangaard Brouer, fengguang.wu, yuanhan.liu, netdev,
	lvs-devel, netfilter-devel

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;


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-10-22 19:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-22 12:17 [nf-next PATCH] ipvs: fix build error when CONFIG_IP_VS_IPV6 is disabled Jesper Dangaard Brouer
2012-10-22 15:39 ` Jesper Dangaard Brouer
2012-10-22 16:30   ` Pablo Neira Ayuso
2012-10-22 19:24     ` Jesper Dangaard Brouer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.