Blame SOURCES/0073-netdrv-net-mlx5-E-Switch-Rename-ingress-acl-config-i.patch

d8f823
From f9d7ea58030ab80031731d50631b3f19503006f7 Mon Sep 17 00:00:00 2001
d8f823
From: Alaa Hleihel <ahleihel@redhat.com>
d8f823
Date: Sun, 10 May 2020 15:03:50 -0400
d8f823
Subject: [PATCH 073/312] [netdrv] net/mlx5: E-Switch, Rename ingress acl
d8f823
 config in offloads mode
d8f823
d8f823
Message-id: <20200510150452.10307-26-ahleihel@redhat.com>
d8f823
Patchwork-id: 306649
d8f823
Patchwork-instance: patchwork
d8f823
O-Subject: [RHEL8.3 BZ 1789380 v2 25/87] net/mlx5: E-Switch, Rename ingress acl config in offloads mode
d8f823
Bugzilla: 1789380
d8f823
RH-Acked-by: Kamal Heib <kheib@redhat.com>
d8f823
RH-Acked-by: Jarod Wilson <jarod@redhat.com>
d8f823
RH-Acked-by: Tony Camuso <tcamuso@redhat.com>
d8f823
RH-Acked-by: Jonathan Toppins <jtoppins@redhat.com>
d8f823
d8f823
Bugzilla: http://bugzilla.redhat.com/1789380
d8f823
Upstream: v5.5-rc1
d8f823
d8f823
commit b1a3380aa709082761c1dba89234ac16c19037c6
d8f823
Author: Vu Pham <vuhuong@mellanox.com>
d8f823
Date:   Mon Oct 28 23:35:00 2019 +0000
d8f823
d8f823
    net/mlx5: E-Switch, Rename ingress acl config in offloads mode
d8f823
d8f823
    Changing the function name esw_ingress_acl_common_config() to
d8f823
    esw_ingress_acl_config() to be consistent with egress config
d8f823
    function naming in offloads mode.
d8f823
d8f823
    Signed-off-by: Vu Pham <vuhuong@mellanox.com>
d8f823
    Reviewed-by: Parav Pandit <parav@mellanox.com>
d8f823
    Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
d8f823
d8f823
Signed-off-by: Alaa Hleihel <ahleihel@redhat.com>
d8f823
Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
d8f823
---
d8f823
 drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c | 6 +++---
d8f823
 1 file changed, 3 insertions(+), 3 deletions(-)
d8f823
d8f823
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
d8f823
index b41b0c868099..9e64bdf17861 100644
d8f823
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
d8f823
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
d8f823
@@ -1901,8 +1901,8 @@ static int esw_vport_egress_prio_tag_config(struct mlx5_eswitch *esw,
d8f823
 	return err;
d8f823
 }
d8f823
 
d8f823
-static int esw_vport_ingress_common_config(struct mlx5_eswitch *esw,
d8f823
-					   struct mlx5_vport *vport)
d8f823
+static int esw_vport_ingress_config(struct mlx5_eswitch *esw,
d8f823
+				    struct mlx5_vport *vport)
d8f823
 {
d8f823
 	int err;
d8f823
 
d8f823
@@ -2007,7 +2007,7 @@ static int esw_create_offloads_acl_tables(struct mlx5_eswitch *esw)
d8f823
 		esw->flags |= MLX5_ESWITCH_VPORT_MATCH_METADATA;
d8f823
 
d8f823
 	mlx5_esw_for_all_vports(esw, i, vport) {
d8f823
-		err = esw_vport_ingress_common_config(esw, vport);
d8f823
+		err = esw_vport_ingress_config(esw, vport);
d8f823
 		if (err)
d8f823
 			goto err_ingress;
d8f823
 
d8f823
-- 
d8f823
2.13.6
d8f823