Skip to content

Commit cb7f6a7

Browse files
Julius Volzhorms
authored andcommitted
IPVS: Move IPVS to net/netfilter/ipvs
Since IPVS now has partial IPv6 support, this patch moves IPVS from net/ipv4/ipvs to net/netfilter/ipvs. It's a result of: $ git mv net/ipv4/ipvs net/netfilter and adapting the relevant Kconfigs/Makefiles to the new path. Signed-off-by: Julius Volz <[email protected]> Signed-off-by: Simon Horman <[email protected]>
1 parent 8d5803b commit cb7f6a7

29 files changed

+266
-3
lines changed

net/ipv4/Kconfig

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,5 +630,3 @@ config TCP_MD5SIG
630630

631631
If unsure, say N.
632632

633-
source "net/ipv4/ipvs/Kconfig"
634-

net/ipv4/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ obj-$(CONFIG_INET_XFRM_MODE_TRANSPORT) += xfrm4_mode_transport.o
3333
obj-$(CONFIG_INET_XFRM_MODE_TUNNEL) += xfrm4_mode_tunnel.o
3434
obj-$(CONFIG_IP_PNP) += ipconfig.o
3535
obj-$(CONFIG_NETFILTER) += netfilter.o netfilter/
36-
obj-$(CONFIG_IP_VS) += ipvs/
3736
obj-$(CONFIG_INET_DIAG) += inet_diag.o
3837
obj-$(CONFIG_INET_TCP_DIAG) += tcp_diag.o
3938
obj-$(CONFIG_NET_TCPPROBE) += tcp_probe.o

net/netfilter/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -838,3 +838,5 @@ config NETFILTER_XT_MATCH_HASHLIMIT
838838

839839
endmenu
840840

841+
source "net/netfilter/ipvs/Kconfig"
842+

net/netfilter/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,6 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_STRING) += xt_string.o
8383
obj-$(CONFIG_NETFILTER_XT_MATCH_TCPMSS) += xt_tcpmss.o
8484
obj-$(CONFIG_NETFILTER_XT_MATCH_TIME) += xt_time.o
8585
obj-$(CONFIG_NETFILTER_XT_MATCH_U32) += xt_u32.o
86+
87+
# IPVS
88+
obj-$(CONFIG_IP_VS) += ipvs/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)