summaryrefslogtreecommitdiffstats
path: root/drivers/net/team/team_mode_roundrobin.c
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2012-04-20 04:42:05 +0000
committerDavid S. Miller <davem@davemloft.net>2012-04-21 16:26:33 -0400
commit19a0b58e506b06fd41659d8734bba6a3e87980f4 (patch)
treef9844eaf9d1471c6fcd98c850b1ed6cd57f2bce3 /drivers/net/team/team_mode_roundrobin.c
parent4c78bb845bd2aaf1f7136e75314c7d034cfd120f (diff)
downloadlinux-19a0b58e506b06fd41659d8734bba6a3e87980f4.tar.gz
linux-19a0b58e506b06fd41659d8734bba6a3e87980f4.tar.bz2
linux-19a0b58e506b06fd41659d8734bba6a3e87980f4.zip
team: allow to enable/disable ports
This patch changes content of hashlist (used to get port struct by computed index (0...en_port_count-1)). Now the hash list contains only enabled ports so userspace will be able to say what ports can be used for tx/rx. This becomes handy when userspace will need to disable ports which does not belong to active aggregator. By default, newly added port is enabled. Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/team/team_mode_roundrobin.c')
-rw-r--r--drivers/net/team/team_mode_roundrobin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/team/team_mode_roundrobin.c b/drivers/net/team/team_mode_roundrobin.c
index a0e8f806331a..6abfbdc96be5 100644
--- a/drivers/net/team/team_mode_roundrobin.c
+++ b/drivers/net/team/team_mode_roundrobin.c
@@ -50,7 +50,7 @@ static bool rr_transmit(struct team *team, struct sk_buff *skb)
struct team_port *port;
int port_index;
- port_index = rr_priv(team)->sent_packets++ % team->port_count;
+ port_index = rr_priv(team)->sent_packets++ % team->en_port_count;
port = team_get_port_by_index_rcu(team, port_index);
port = __get_first_port_up(team, port);
if (unlikely(!port))