Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 377020
b: refs/heads/master
c: b79462a
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Jun 12, 2013
1 parent ef484fd commit f25e499
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: 72df935d985c1575ed44ad2c8c653b28147993fa
refs/heads/master: b79462a8b9f9a452edc20c64a70a89ba3b0a6a88
4 changes: 2 additions & 2 deletions trunk/include/linux/if_team.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,12 @@ team_get_first_port_txable_rcu(struct team *team, struct team_port *port)
return port;
cur = port;
list_for_each_entry_continue_rcu(cur, &team->port_list, list)
if (team_port_txable(port))
if (team_port_txable(cur))
return cur;
list_for_each_entry_rcu(cur, &team->port_list, list) {
if (cur == port)
break;
if (team_port_txable(port))
if (team_port_txable(cur))
return cur;
}
return NULL;
Expand Down

0 comments on commit f25e499

Please sign in to comment.