Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 204033
b: refs/heads/master
c: 6d1d1d3
h: refs/heads/master
i:
  204031: a58b2f9
v: v3
  • Loading branch information
Herbert Xu authored and David S. Miller committed Jul 31, 2010
1 parent 0beda28 commit 575954f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a3bdb549e30e7a263f7a589747c40e9c50110315
refs/heads/master: 6d1d1d398cb7db7a12c5d652d50f85355345234f
4 changes: 3 additions & 1 deletion trunk/net/bridge/br_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ netdev_tx_t br_dev_xmit(struct sk_buff *skb, struct net_device *dev)

rcu_read_lock();
if (is_multicast_ether_addr(dest)) {
if (br_multicast_rcv(br, NULL, skb))
if (br_multicast_rcv(br, NULL, skb)) {
kfree_skb(skb);
goto out;
}

mdst = br_mdb_get(br, skb);
if (mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb))
Expand Down

0 comments on commit 575954f

Please sign in to comment.