dect
/
linux-2.6
Archived
13
0
Fork 0

team: init error value to 0 in team_netpoll_setup()

This will ensure correct value is returned in case the port list is empty.

Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Reported-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2012-07-24 01:20:48 +00:00 committed by David S. Miller
parent 9cb429d692
commit 3324d024ba
1 changed files with 1 additions and 1 deletions

View File

@ -1447,7 +1447,7 @@ static int team_netpoll_setup(struct net_device *dev,
{
struct team *team = netdev_priv(dev);
struct team_port *port;
int err;
int err = 0;
mutex_lock(&team->lock);
list_for_each_entry(port, &team->port_list, list) {