mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
kernel: fix another corner case in the bridge state patch (#13874)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37347
This commit is contained in:
parent
55178554c2
commit
a6db996b13
@ -38,8 +38,8 @@ Signed-off-by: Felix Fietkau <nbd@openwrt.org>
|
||||
forward:
|
||||
switch (p->state) {
|
||||
+ case BR_STATE_DISABLED:
|
||||
+ if (!ether_addr_equal(p->br->dev->dev_addr, dest))
|
||||
+ goto drop;
|
||||
+ if (ether_addr_equal(p->br->dev->dev_addr, dest))
|
||||
+ skb->pkt_type = PACKET_HOST;
|
||||
+
|
||||
+ if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
|
||||
+ br_handle_local_finish))
|
||||
|
@ -38,8 +38,8 @@ Signed-off-by: Felix Fietkau <nbd@openwrt.org>
|
||||
forward:
|
||||
switch (p->state) {
|
||||
+ case BR_STATE_DISABLED:
|
||||
+ if (!ether_addr_equal(p->br->dev->dev_addr, dest))
|
||||
+ goto drop;
|
||||
+ if (ether_addr_equal(p->br->dev->dev_addr, dest))
|
||||
+ skb->pkt_type = PACKET_HOST;
|
||||
+
|
||||
+ if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
|
||||
+ br_handle_local_finish))
|
||||
|
Loading…
x
Reference in New Issue
Block a user