net/mlx5: SF, Reuse stored hardware function id
authorParav Pandit <parav@nvidia.com>
Fri, 5 Mar 2021 05:38:02 +0000 (07:38 +0200)
committerSaeed Mahameed <saeedm@nvidia.com>
Wed, 14 Apr 2021 18:02:49 +0000 (11:02 -0700)
SF's hardware function id is already stored in mlx5_sf. Reuse it,
instead of querying the hw table.

Signed-off-by: Parav Pandit <parav@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/sf/devlink.c

index 60a6328a9ca0cead8b84c1d9feefc60ccb56368d..52226d9b9a6de60cd9be993a460f501cfade0559 100644 (file)
@@ -270,15 +270,14 @@ static int mlx5_sf_add(struct mlx5_core_dev *dev, struct mlx5_sf_table *table,
 {
        struct mlx5_eswitch *esw = dev->priv.eswitch;
        struct mlx5_sf *sf;
-       u16 hw_fn_id;
        int err;
 
        sf = mlx5_sf_alloc(table, new_attr->sfnum, extack);
        if (IS_ERR(sf))
                return PTR_ERR(sf);
 
-       hw_fn_id = mlx5_sf_sw_to_hw_id(dev, sf->id);
-       err = mlx5_esw_offloads_sf_vport_enable(esw, &sf->dl_port, hw_fn_id, new_attr->sfnum);
+       err = mlx5_esw_offloads_sf_vport_enable(esw, &sf->dl_port, sf->hw_fn_id,
+                                               new_attr->sfnum);
        if (err)
                goto esw_err;
        *new_port_index = sf->port_index;