Commit 3324d024 authored by Jiri Pirko's avatar Jiri Pirko Committed by David S. Miller

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: default avatarJiri Pirko <jiri@resnulli.us>
Reported-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9cb429d6
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment