diff options
author | Steve Wise <swise@opengridcomputing.com> | 2017-07-25 16:51:15 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-16 18:43:21 +0300 |
commit | d4ba61d218822578dcf6c2453a38e000b0ea01e6 (patch) | |
tree | c27f5df236f27303f2db40ba5d19038f75ca16f2 /drivers/infiniband | |
parent | 5b59a3969e95cd9be3699ecf7149ae8ef103b6f5 (diff) | |
download | linux-d4ba61d218822578dcf6c2453a38e000b0ea01e6.tar.xz |
iw_cxgb4: fix misuse of integer variable
Fixes: ee30f7d507c0 ("iw_cxgb4: Max fastreg depth depends on DSGL support")
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/mem.c b/drivers/infiniband/hw/cxgb4/mem.c index 5332f06b99ba..c2fba76becd4 100644 --- a/drivers/infiniband/hw/cxgb4/mem.c +++ b/drivers/infiniband/hw/cxgb4/mem.c @@ -661,7 +661,7 @@ struct ib_mr *c4iw_alloc_mr(struct ib_pd *pd, rhp = php->rhp; if (mr_type != IB_MR_TYPE_MEM_REG || - max_num_sg > t4_max_fr_depth(&rhp->rdev.lldi.ulptx_memwrite_dsgl && + max_num_sg > t4_max_fr_depth(rhp->rdev.lldi.ulptx_memwrite_dsgl && use_dsgl)) return ERR_PTR(-EINVAL); |