aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/i40iw
diff options
context:
space:
mode:
authorFaisal Latif <faisal.latif@intel.com>2016-06-14 16:54:17 -0500
committerDoug Ledford <dledford@redhat.com>2016-06-23 10:35:34 -0400
commitee23abd75c5076e51061c275e8f659d754a63c9d (patch)
tree44ac91ce349d60d29bf2c697f068c68012d7007f /drivers/infiniband/hw/i40iw
parenti40iw: Correct CQ arming (diff)
downloadlinux-dev-ee23abd75c5076e51061c275e8f659d754a63c9d.tar.xz
linux-dev-ee23abd75c5076e51061c275e8f659d754a63c9d.zip
i40iw: Correct status check on i40iw_get_pble
i40iw_get_pble returns 0 on success. Correct the check on return code. Signed-off-by: Faisal Latif <faisal.latif@intel.com> Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/i40iw')
-rw-r--r--drivers/infiniband/hw/i40iw/i40iw_verbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/i40iw/i40iw_verbs.c b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
index c6e75acbbbcd..65bea9c8df13 100644
--- a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
@@ -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)