]> git.itanic.dy.fi Git - linux-stable/commitdiff
net/mlx5: fs, Remove redundant vport_number assignment
authorRoi Dayan <roid@nvidia.com>
Tue, 17 Jan 2023 12:34:37 +0000 (14:34 +0200)
committerSaeed Mahameed <saeedm@nvidia.com>
Wed, 8 Feb 2023 00:29:54 +0000 (16:29 -0800)
vport_number and other_vport being reassigned outside the if clause anyway.
remove the redundant assignment.

Signed-off-by: Roi Dayan <roid@nvidia.com>
Reviewed-by: Maor Dickman <maord@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.c

index 32d4c967469ccc75eceb28d2d6e7701aecacce3a..e6874298ba92d86c09ee7f5276d1691635605218 100644 (file)
@@ -412,11 +412,6 @@ static int mlx5_cmd_create_flow_group(struct mlx5_flow_root_namespace *ns,
                 MLX5_CMD_OP_CREATE_FLOW_GROUP);
        MLX5_SET(create_flow_group_in, in, table_type, ft->type);
        MLX5_SET(create_flow_group_in, in, table_id, ft->id);
-       if (ft->vport) {
-               MLX5_SET(create_flow_group_in, in, vport_number, ft->vport);
-               MLX5_SET(create_flow_group_in, in, other_vport, 1);
-       }
-
        MLX5_SET(create_flow_group_in, in, vport_number, ft->vport);
        MLX5_SET(create_flow_group_in, in, other_vport,
                 !!(ft->flags & MLX5_FLOW_TABLE_OTHER_VPORT));