A valid rte_errno is desired when DR layer api returns error
and it can't over-write the value set by under-layer.

Fixes: 0a2657c4ff4d ("net/mlx5/hws: support insert header action")
Cc: hamd...@nvidia.com

Signed-off-by: Rongwei Liu <rongw...@nvidia.com>
---
 drivers/net/mlx5/hws/mlx5dr_action.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/mlx5/hws/mlx5dr_action.c 
b/drivers/net/mlx5/hws/mlx5dr_action.c
index 769bb97e18..4e04d77852 100644
--- a/drivers/net/mlx5/hws/mlx5dr_action.c
+++ b/drivers/net/mlx5/hws/mlx5dr_action.c
@@ -2291,6 +2291,7 @@ mlx5dr_action_create_insert_header(struct mlx5dr_context 
*ctx,
 
        if (!num_of_hdrs) {
                DR_LOG(ERR, "Reformat num_of_hdrs cannot be zero");
+               rte_errno = EINVAL;
                return NULL;
        }
 
@@ -2338,7 +2339,6 @@ mlx5dr_action_create_insert_header(struct mlx5dr_context 
*ctx,
                                                   reformat_hdrs, 
log_bulk_size);
        if (ret) {
                DR_LOG(ERR, "Failed to create HWS reformat action");
-               rte_errno = EINVAL;
                goto free_reformat_hdrs;
        }
 
-- 
2.27.0

Reply via email to