[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <51A611CF02000078000D99A6@nat28.tlf.novell.com>
Date: Wed, 29 May 2013 13:33:51 +0100
From: "Jan Beulich" <JBeulich@...e.com>
To: <wensong@...ux-vs.org>, <ja@....bg>, <horms@...ge.net.au>
Cc: <pablo@...filter.org>, <lvs-devel@...r.kernel.org>,
<netdev@...r.kernel.org>
Subject: [PATCH] ip_vs_sh: fix build
kfree_rcu() requires offsetof(..., rcu_head) < 4096, which can get
violated with a sufficiently high CONFIG_IP_VS_SH_TAB_BITS.
Signed-off-by: Jan Beulich <jbeulich@...e.com>
---
net/netfilter/ipvs/ip_vs_sh.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- 3.10-rc3/net/netfilter/ipvs/ip_vs_sh.c
+++ 3.10-rc3-ip_vs_sh-build/net/netfilter/ipvs/ip_vs_sh.c
@@ -67,8 +67,8 @@ struct ip_vs_sh_bucket {
#define IP_VS_SH_TAB_MASK (IP_VS_SH_TAB_SIZE - 1)
struct ip_vs_sh_state {
- struct ip_vs_sh_bucket buckets[IP_VS_SH_TAB_SIZE];
struct rcu_head rcu_head;
+ struct ip_vs_sh_bucket buckets[IP_VS_SH_TAB_SIZE];
};
/*
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists