Fernando Fernandez Mancera <ffmancera@xxxxxxxxxx> wrote: > Signed-off-by: Fernando Fernandez Mancera <ffmancera@xxxxxxxxxx> > --- > net/ipv4/netfilter/Kconfig | 2 +- > net/ipv6/netfilter/Kconfig | 2 +- > net/netfilter/Kconfig | 4 ++++ > net/netfilter/Makefile | 1 + > 4 files changed, 7 insertions(+), 2 deletions(-) > > diff --git a/net/ipv4/netfilter/Kconfig b/net/ipv4/netfilter/Kconfig > index 1412b029f37f..87f6ec800e54 100644 > --- a/net/ipv4/netfilter/Kconfig > +++ b/net/ipv4/netfilter/Kconfig > @@ -197,7 +197,7 @@ config IP_NF_TARGET_SYNPROXY > tristate "SYNPROXY target support" > depends on NF_CONNTRACK && NETFILTER_ADVANCED > select NETFILTER_SYNPROXY > - select SYN_COOKIES > + select NF_SYNPROXY What is the difference between NETFILTER_SYNPROXY and NF_SYNPROXY? Any chance we can ... > diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile > index 72cca6b48960..7a6067513eee 100644 > --- a/net/netfilter/Makefile > +++ b/net/netfilter/Makefile > @@ -67,6 +67,7 @@ obj-$(CONFIG_NF_NAT_TFTP) += nf_nat_tftp.o > > # SYNPROXY > obj-$(CONFIG_NETFILTER_SYNPROXY) += nf_synproxy_core.o > +obj-$(CONFIG_NF_SYNPROXY) += nf_synproxy.o ... make nf_synproxy.o and nf_synproxy_core.o be part of same module? (Or place it even in same .c file?)