Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {