summaryrefslogtreecommitdiffstats
path: root/drivers/infiniband
diff options
context:
space:
mode:
authorIra Weiny <ira.weiny@intel.com>2016-02-03 14:15:28 -0800
committerDoug Ledford <dledford@redhat.com>2016-03-10 20:37:32 -0500
commitb7b3cf44647cab47f6b7d8f10bfdc92cafbb952f (patch)
treee1aabf174bd0615aad8ddeb2e7e938f1d76407f1 /drivers/infiniband
parent61a650c14d728354b2d493bed3f1b0531f033dac (diff)
downloadop-kernel-dev-b7b3cf44647cab47f6b7d8f10bfdc92cafbb952f.zip
op-kernel-dev-b7b3cf44647cab47f6b7d8f10bfdc92cafbb952f.tar.gz
IB/rdmavt: Properly pass gfp to hw driver function
alloc_qpn must use GFP and the hardware drivers should use it as well. Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Ira Weiny <ira.weiny@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r--drivers/infiniband/sw/rdmavt/qp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/sw/rdmavt/qp.c b/drivers/infiniband/sw/rdmavt/qp.c
index 2647dba..e8d0da8 100644
--- a/drivers/infiniband/sw/rdmavt/qp.c
+++ b/drivers/infiniband/sw/rdmavt/qp.c
@@ -303,8 +303,7 @@ static int alloc_qpn(struct rvt_dev_info *rdi, struct rvt_qpn_table *qpt,
u32 ret;
if (rdi->driver_f.alloc_qpn)
- return rdi->driver_f.alloc_qpn(rdi, qpt, type, port_num,
- GFP_KERNEL);
+ return rdi->driver_f.alloc_qpn(rdi, qpt, type, port_num, gfp);
if (type == IB_QPT_SMI || type == IB_QPT_GSI) {
unsigned n;
OpenPOWER on IntegriCloud