Jarek Poplawski wrote: > On Fri, Sep 22, 2006 at 11:27:31AM +0200, Jarek Poplawski wrote: > ... > >>There is CONFIG_BRIDGE=m and this is the source of a problem: >>config shouldn't allow for: >> >>CONFIG_NETFILTER_BRIDGE=y >>CONFIG_NETFILTER_XT_MATCH_PHYSDEV=y > > > So here is a patch proposal. > > Jarek P. > > diff -Nurp linux-2.6.18-/net/Kconfig linux-2.6.18/net/Kconfig > --- linux-2.6.18-/net/Kconfig 2006-09-20 05:42:06.000000000 +0200 > +++ linux-2.6.18/net/Kconfig 2006-09-22 11:42:19.000000000 +0200 > @@ -143,7 +143,7 @@ config NETFILTER_DEBUG > > config BRIDGE_NETFILTER > bool "Bridged IP/ARP packets filtering" > - depends on BRIDGE && NETFILTER && INET > + depends on BRIDGE=y && NETFILTER && INET
We should fix the physdev dependencies since this is what is causing problems. Signed-off-by: Patrick McHardy <[EMAIL PROTECTED]>
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 0a28d2c..ce94732 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -365,7 +365,7 @@ config NETFILTER_XT_MATCH_MULTIPORT config NETFILTER_XT_MATCH_PHYSDEV tristate '"physdev" match support' - depends on NETFILTER_XTABLES && BRIDGE_NETFILTER + depends on NETFILTER_XTABLES && BRIDGE && BRIDGE_NETFILTER help Physdev packet matching matches against the physical bridge ports the IP packet arrived on or will leave by.