aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJulius Volz <juliusv@google.com>2008-09-02 09:55:50 -0400
committerSimon Horman <horms@verge.net.au>2008-09-04 21:17:11 -0400
commitc6883f587341a3ed113856de8769d0992b4bbd85 (patch)
treeb0a69e64730a9b1fd936f946d445ebfa673bb666 /net
parent667a5f18162e803e30722af46ade1737e3b93198 (diff)
IVPS: Disable sync daemon for IPv6 connections
Disable the sync daemon for IPv6 connections, works only with IPv4 for now. Signed-off-by: Julius Volz <juliusv@google.com> Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net')
-rw-r--r--net/ipv4/ipvs/ip_vs_core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/ipvs/ip_vs_core.c b/net/ipv4/ipvs/ip_vs_core.c
index 27bef1d67aa7..5a7a81778b0b 100644
--- a/net/ipv4/ipvs/ip_vs_core.c
+++ b/net/ipv4/ipvs/ip_vs_core.c
@@ -1321,7 +1321,8 @@ ip_vs_in(unsigned int hooknum, struct sk_buff *skb,
1321 * encorage the standby servers to update the connections timeout 1321 * encorage the standby servers to update the connections timeout
1322 */ 1322 */
1323 atomic_inc(&cp->in_pkts); 1323 atomic_inc(&cp->in_pkts);
1324 if ((ip_vs_sync_state & IP_VS_STATE_MASTER) && 1324 if (af == AF_INET &&
1325 (ip_vs_sync_state & IP_VS_STATE_MASTER) &&
1325 (((cp->protocol != IPPROTO_TCP || 1326 (((cp->protocol != IPPROTO_TCP ||
1326 cp->state == IP_VS_TCP_S_ESTABLISHED) && 1327 cp->state == IP_VS_TCP_S_ESTABLISHED) &&
1327 (atomic_read(&cp->in_pkts) % sysctl_ip_vs_sync_threshold[1] 1328 (atomic_read(&cp->in_pkts) % sysctl_ip_vs_sync_threshold[1]