Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb685528 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by David S. Miller
Browse files

bridge: fix forwarding of IPv6



The commit 6b1e960f
    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: default avatarNoah Meyerhans <noahm@debian.org>
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Reviewed-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a10e1466
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -737,7 +737,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 */