Re: [PATCH net-next v2] bridge: make proxy arp configurable
From: Sabrina Dubroca <sd@queasysnail.net>
Date: 2014-11-30 18:20:53
Hello Stephen, 2014-11-30, 09:20:01 -0800, Stephen Hemminger wrote:
quoted hunk ↗ jump to hunk
This solves kernel build without INET enabled, and allows user to control enabling this feature. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> --- net/bridge/Kconfig | 15 +++++++++++++++ net/bridge/br_input.c | 4 ++++ net/bridge/br_sysfs_if.c | 4 ++++ 3 files changed, 23 insertions(+)--- a/net/bridge/Kconfig 2014-11-25 09:42:34.687891662 -0800 +++ b/net/bridge/Kconfig 2014-11-25 09:42:34.683891643 -0800@@ -60,3 +60,18 @@ config BRIDGE_VLAN_FILTERING Say N to exclude this support and reduce the binary size. If unsure, say Y. + +config BRIDGE_ARP_PROXY
Shouldn't this be BRIDGE_PROXY_ARP to match all the #ifdef CONFIG_BRIDGE_PROXY_ARP below?
quoted hunk ↗ jump to hunk
--- a/net/bridge/br_input.c 2014-11-25 09:42:34.687891662 -0800 +++ b/net/bridge/br_input.c 2014-11-25 09:42:34.683891643 -0800@@ -59,6 +59,7 @@ static int br_pass_frame_up(struct sk_bu netif_receive_skb); } +#ifdef CONFIG_BRIDGE_PROXY_ARP static void br_do_proxy_arp(struct sk_buff *skb, struct net_bridge *br, u16 vid) {@@ -112,6 +113,7 @@ static void br_do_proxy_arp(struct sk_bu neigh_release(n); } } +#endif
-- Sabrina