net/mlx5: DR, Fix error return code in dr_domain_init_resources()
Fix to return negative error code -ENOMEM from the error handling
case instead of 0, as done elsewhere in this function.
Fixes: 4ec9e7b026
("net/mlx5: DR, Expose steering domain functionality")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
This commit is contained in:
parent
f6a8cddfb5
commit
83de91f826
|
@ -66,6 +66,7 @@ static int dr_domain_init_resources(struct mlx5dr_domain *dmn)
|
|||
dmn->uar = mlx5_get_uars_page(dmn->mdev);
|
||||
if (!dmn->uar) {
|
||||
mlx5dr_err(dmn, "Couldn't allocate UAR\n");
|
||||
ret = -ENOMEM;
|
||||
goto clean_pd;
|
||||
}
|
||||
|
||||
|
@ -73,6 +74,7 @@ static int dr_domain_init_resources(struct mlx5dr_domain *dmn)
|
|||
if (!dmn->ste_icm_pool) {
|
||||
mlx5dr_err(dmn, "Couldn't get icm memory for %s\n",
|
||||
dev_name(dmn->mdev->device));
|
||||
ret = -ENOMEM;
|
||||
goto clean_uar;
|
||||
}
|
||||
|
||||
|
@ -80,6 +82,7 @@ static int dr_domain_init_resources(struct mlx5dr_domain *dmn)
|
|||
if (!dmn->action_icm_pool) {
|
||||
mlx5dr_err(dmn, "Couldn't get action icm memory for %s\n",
|
||||
dev_name(dmn->mdev->device));
|
||||
ret = -ENOMEM;
|
||||
goto free_ste_icm_pool;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue