aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/i40iw
diff options
context:
space:
mode:
authorIsmail, Mustafa <mustafa.ismail@intel.com>2016-04-18 10:32:57 -0500
committerDoug Ledford <dledford@redhat.com>2016-04-28 16:32:53 -0400
commitbd57aeae563c8f032d6eee1c151f12b03191f053 (patch)
treef50c5c2e2e896d761e65804a2f010453c8add1bf /drivers/infiniband/hw/i40iw
parentRDMA/i40iw: Fix refused connections (diff)
downloadlinux-dev-bd57aeae563c8f032d6eee1c151f12b03191f053.tar.xz
linux-dev-bd57aeae563c8f032d6eee1c151f12b03191f053.zip
RDMA/i40iw: Correct max message size in query port
Fix to correct max reported message size in query port. Signed-off-by: Mustafa Ismail <mustafa.ismail@intel.com> Signed-off-by: Faisal Latif <faisal.latif@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 329f59a9f18a..2534c5d1d7ec 100644
--- a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
@@ -120,7 +120,7 @@ static int i40iw_query_port(struct ib_device *ibdev,
props->pkey_tbl_len = 1;
props->active_width = IB_WIDTH_4X;
props->active_speed = 1;
- props->max_msg_sz = 0x80000000;
+ props->max_msg_sz = I40IW_MAX_OUTBOUND_MESSAGE_SIZE;
return 0;
}