Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315159
b: refs/heads/master
c: 6e88e13
h: refs/heads/master
i:
  315157: 2ac3ad2
  315155: e823012
  315151: 7fa9856
v: v3
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Jul 12, 2012
1 parent 70e20f1 commit 833d4c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 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: f0a70e902f483295a8b6d74ef4393bc577b703d7
refs/heads/master: 6e88e1357c788d40cd64a8c9080e81ca6c9eee0f
6 changes: 6 additions & 0 deletions trunk/drivers/net/team/team.c
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,12 @@ bool team_port_enabled(struct team_port *port)
}
EXPORT_SYMBOL(team_port_enabled);

bool team_port_txable(struct team_port *port)
{
return port->linkup && team_port_enabled(port);
}
EXPORT_SYMBOL(team_port_txable);

/*
* Enable/disable port by adding to enabled port hashlist and setting
* port->index (Might be racy so reader could see incorrect ifindex when
Expand Down
6 changes: 3 additions & 3 deletions trunk/drivers/net/team/team_mode_roundrobin.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ static struct team_port *__get_first_port_up(struct team *team,
{
struct team_port *cur;

if (port->linkup)
if (team_port_txable(port))
return port;
cur = port;
list_for_each_entry_continue_rcu(cur, &team->port_list, list)
if (cur->linkup)
if (team_port_txable(port))
return cur;
list_for_each_entry_rcu(cur, &team->port_list, list) {
if (cur == port)
break;
if (cur->linkup)
if (team_port_txable(port))
return cur;
}
return NULL;
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/if_team.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ struct team_port {
};

extern bool team_port_enabled(struct team_port *port);
extern bool team_port_txable(struct team_port *port);

struct team_mode_ops {
int (*init)(struct team *team);
Expand Down

0 comments on commit 833d4c9

Please sign in to comment.