mirror of https://gitee.com/openkylin/linux.git
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: Saeed Mahameed <saeedm@mellanox.com> Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
This commit is contained in:
parent
7f859ecfa8
commit
be4891af77
|
@ -2478,9 +2478,7 @@ int mlx5e_open_locked(struct net_device *netdev)
|
|||
mlx5e_redirect_rqts(priv);
|
||||
mlx5e_update_carrier(priv);
|
||||
mlx5e_timestamp_init(priv);
|
||||
#ifdef CONFIG_RFS_ACCEL
|
||||
priv->netdev->rx_cpu_rmap = priv->mdev->rmap;
|
||||
#endif
|
||||
|
||||
if (priv->profile->update_stats)
|
||||
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;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_RFS_ACCEL
|
||||
netdev->rx_cpu_rmap = mdev->rmap;
|
||||
#endif
|
||||
|
||||
profile->init(mdev, netdev, profile, ppriv);
|
||||
|
||||
netif_carrier_off(netdev);
|
||||
|
|
Loading…
Reference in New Issue