summaryrefslogtreecommitdiff
path: root/net/netfilter/ipvs/Makefile
diff options
context:
space:
mode:
authorKenny Mathis <kmathis@chokepoint.net>2014-09-09 09:20:15 -0400
committerSimon Horman <horms@verge.net.au>2014-09-16 09:03:32 +0900
commit616a9be25cb9516e546c0de55d61e1e46e54ade9 (patch)
treec37d3090141c8a56832a0e420c9e916f62d6adc4 /net/netfilter/ipvs/Makefile
parent0bbe80e571c7b866afd92a98edd32a969467a7a9 (diff)
ipvs: Add simple weighted failover scheduler
Add simple weighted IPVS failover support to the Linux kernel. All other scheduling modules implement some form of load balancing, while this offers a simple failover solution. Connections are directed to the appropriate server based solely on highest weight value and server availability. Tested functionality with keepalived. Signed-off-by: Kenny Mathis <kmathis@chokepoint.net> Acked-by: Julian Anastasov <ja@ssi.bg> Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'net/netfilter/ipvs/Makefile')
-rw-r--r--net/netfilter/ipvs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/ipvs/Makefile b/net/netfilter/ipvs/Makefile
index 34ee602ddb66..38b2723b2e3d 100644
--- a/net/netfilter/ipvs/Makefile
+++ b/net/netfilter/ipvs/Makefile
@@ -26,6 +26,7 @@ obj-$(CONFIG_IP_VS_RR) += ip_vs_rr.o
obj-$(CONFIG_IP_VS_WRR) += ip_vs_wrr.o
obj-$(CONFIG_IP_VS_LC) += ip_vs_lc.o
obj-$(CONFIG_IP_VS_WLC) += ip_vs_wlc.o
+obj-$(CONFIG_IP_VS_FO) += ip_vs_fo.o
obj-$(CONFIG_IP_VS_LBLC) += ip_vs_lblc.o
obj-$(CONFIG_IP_VS_LBLCR) += ip_vs_lblcr.o
obj-$(CONFIG_IP_VS_DH) += ip_vs_dh.o