Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 194580
b: refs/heads/master
c: 168d40e
h: refs/heads/master
v: v3
  • Loading branch information
stephen hemminger authored and David S. Miller committed Apr 28, 2010
1 parent b51035e commit 2d3e57f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 7e80c124485b73146deadce14fd4da2054581806
refs/heads/master: 168d40ee3d147ae20860e7916bd79b636cbe8fd5
4 changes: 2 additions & 2 deletions trunk/net/bridge/br_forward.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ static void br_multicast_flood(struct net_bridge_mdb_entry *mdst,

prev = NULL;

rp = br->router_list.first;
rp = rcu_dereference(br->router_list.first);
p = mdst ? mdst->ports : NULL;
while (p || rp) {
lport = p ? p->port : NULL;
Expand All @@ -233,7 +233,7 @@ static void br_multicast_flood(struct net_bridge_mdb_entry *mdst,
if ((unsigned long)lport >= (unsigned long)port)
p = p->next;
if ((unsigned long)rport >= (unsigned long)port)
rp = rp->next;
rp = rcu_dereference(rp->next);
}

if (!prev)
Expand Down

0 comments on commit 2d3e57f

Please sign in to comment.