From: Stephen Hemminger Date: Fri, 13 May 2011 20:03:24 +0000 (-0400) Subject: bridge: fix forwarding of IPv6 X-Git-Tag: v2.6.38.8~99 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3b7219a8c7a581033008ffbf60d6529a24291718;p=karo-tx-linux.git bridge: fix forwarding of IPv6 [ Upstream commit cb68552858c64db302771469b1202ea09e696329 ] The commit 6b1e960fdbd75dcd9bcc3ba5ff8898ff1ad30b6e bridge: Reset IPCB when entering IP stack on NF_FORWARD broke forwarding of IPV6 packets in bridge because it would call bp_parse_ip_options with an IPV6 packet. Reported-by: Noah Meyerhans Signed-off-by: Stephen Hemminger Reviewed-by: Eric Dumazet Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c index 333bcaa1377c..e54990e4448b 100644 --- a/net/bridge/br_netfilter.c +++ b/net/bridge/br_netfilter.c @@ -739,7 +739,7 @@ static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb, nf_bridge->mask |= BRNF_PKT_TYPE; } - if (br_parse_ip_options(skb)) + if (pf == PF_INET && br_parse_ip_options(skb)) return NF_DROP; /* The physdev module checks on this */