aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorParav Pandit <parav@mellanox.com>2020-04-20 04:32:48 -0500
committerSaeed Mahameed <saeedm@mellanox.com>2020-04-30 09:20:32 -0700
commite9864539053ae15c2d6475833f62d7383f9271ce (patch)
tree40fd7db2fe1c8be50505b98a136061327683f9bd
parentnet/mlx5: E-switch, Fix error unwinding flow for steering init failure (diff)
downloadwireguard-linux-e9864539053ae15c2d6475833f62d7383f9271ce.tar.xz
wireguard-linux-e9864539053ae15c2d6475833f62d7383f9271ce.zip
net/mlx5: E-switch, Fix printing wrong error value
When mlx5_modify_header_alloc() fails, instead of printing the error value returned, current error log prints 0. Fix by printing correct error value returned by mlx5_modify_header_alloc(). Fixes: 6724e66b90ee ("net/mlx5: E-Switch, Get reg_c1 value on miss") Signed-off-by: Parav Pandit <parav@mellanox.com> Reviewed-by: Roi Dayan <roid@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
index 94d6c91a8612..8289af360e8d 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
@@ -1550,9 +1550,9 @@ static int esw_create_restore_table(struct mlx5_eswitch *esw)
MLX5_FLOW_NAMESPACE_KERNEL, 1,
modact);
if (IS_ERR(mod_hdr)) {
+ err = PTR_ERR(mod_hdr);
esw_warn(dev, "Failed to create restore mod header, err: %d\n",
err);
- err = PTR_ERR(mod_hdr);
goto err_mod_hdr;
}