Commit 12680ec4 authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by David S. Miller

Bridging fix:

- In br_handle_frame, dont forget to drop br->lock for
handle_special_frame code path
parent 744dd21f
......@@ -161,8 +161,10 @@ void br_handle_frame(struct sk_buff *skb)
handle_special_frame:
if (!dest[5]) {
br_stp_handle_bpdu(skb);
read_unlock(&br->lock);
return;
}
kfree_skb(skb);
read_unlock(&br->lock);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment