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

Commit be4891af authored by Saeed Mahameed's avatar Saeed Mahameed
Browse files

net/mlx5e: Set netdev->rx_cpu_rmap on netdev creation



To simplify mlx5e_open_locked flow we set netdev->rx_cpu_rmap on netdev
creation rather on netdev open, it is redundant to set it every time on
mlx5e_open_locked.

Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
Reviewed-by: default avatarTariq Toukan <tariqt@mellanox.com>
parent 7f859ecf
Loading
Loading
Loading
Loading
+5 −3
Original line number Original line Diff line number Diff line
@@ -2478,9 +2478,7 @@ int mlx5e_open_locked(struct net_device *netdev)
	mlx5e_redirect_rqts(priv);
	mlx5e_redirect_rqts(priv);
	mlx5e_update_carrier(priv);
	mlx5e_update_carrier(priv);
	mlx5e_timestamp_init(priv);
	mlx5e_timestamp_init(priv);
#ifdef CONFIG_RFS_ACCEL

	priv->netdev->rx_cpu_rmap = priv->mdev->rmap;
#endif
	if (priv->profile->update_stats)
	if (priv->profile->update_stats)
		queue_delayed_work(priv->wq, &priv->update_stats_work, 0);
		queue_delayed_work(priv->wq, &priv->update_stats_work, 0);


@@ -4022,6 +4020,10 @@ struct net_device *mlx5e_create_netdev(struct mlx5_core_dev *mdev,
		return NULL;
		return NULL;
	}
	}


#ifdef CONFIG_RFS_ACCEL
	netdev->rx_cpu_rmap = mdev->rmap;
#endif

	profile->init(mdev, netdev, profile, ppriv);
	profile->init(mdev, netdev, profile, ppriv);


	netif_carrier_off(netdev);
	netif_carrier_off(netdev);