net/mlx5e: Priv state flag not rolled-back upon netdev open error
The private mlx5 state flag that indicates that the netdev is opened is set at the beginning of the netdev open flow. In case an error occured later in the mlx5 netdev open flow, this flag was not cleared, remaining set although the actual set is closed. Signed-off-by: Achiad Shochat <achiad@mellanox.com> Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4de61ba234
commit
343b29f308
|
@ -1367,13 +1367,13 @@ int mlx5e_open_locked(struct net_device *netdev)
|
|||
|
||||
err = mlx5e_set_dev_port_mtu(netdev);
|
||||
if (err)
|
||||
return err;
|
||||
goto err_clear_state_opened_flag;
|
||||
|
||||
err = mlx5e_open_channels(priv);
|
||||
if (err) {
|
||||
netdev_err(netdev, "%s: mlx5e_open_channels failed, %d\n",
|
||||
__func__, err);
|
||||
return err;
|
||||
goto err_clear_state_opened_flag;
|
||||
}
|
||||
|
||||
mlx5e_update_carrier(priv);
|
||||
|
@ -1382,6 +1382,10 @@ int mlx5e_open_locked(struct net_device *netdev)
|
|||
schedule_delayed_work(&priv->update_stats_work, 0);
|
||||
|
||||
return 0;
|
||||
|
||||
err_clear_state_opened_flag:
|
||||
clear_bit(MLX5E_STATE_OPENED, &priv->state);
|
||||
return err;
|
||||
}
|
||||
|
||||
static int mlx5e_open(struct net_device *netdev)
|
||||
|
|
Loading…
Reference in New Issue