Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee23abd7 authored by Faisal Latif's avatar Faisal Latif Committed by Doug Ledford
Browse files

i40iw: Correct status check on i40iw_get_pble



i40iw_get_pble returns 0 on success. Correct the check on return
code.

Signed-off-by: default avatarFaisal Latif <faisal.latif@intel.com>
Signed-off-by: default avatarShiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 747f1c6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1527,7 +1527,7 @@ static struct ib_mr *i40iw_alloc_mr(struct ib_pd *pd,
	mutex_lock(&iwdev->pbl_mutex);
	status = i40iw_get_pble(&iwdev->sc_dev, iwdev->pble_rsrc, palloc, iwmr->page_cnt);
	mutex_unlock(&iwdev->pbl_mutex);
	if (!status)
	if (status)
		goto err1;

	if (palloc->level != I40IW_LEVEL_1)