Lines Matching defs:team
3 * drivers/net/team/team_mode_roundrobin.c - Round-robin mode for team
19 static struct rr_priv *rr_priv(struct team *team)
21 return (struct rr_priv *) &team->mode_priv;
24 static bool rr_transmit(struct team *team, struct sk_buff *skb)
29 port_index = team_num_to_port_index(team,
30 rr_priv(team)->sent_packets++);
31 port = team_get_port_by_index_rcu(team, port_index);
34 port = team_get_first_port_txable_rcu(team, port);
37 if (team_dev_queue_xmit(team, port, skb))
75 MODULE_DESCRIPTION("Round-robin mode for team");