diff options
author | Ismail, Mustafa <[email protected]> | 2016-04-18 10:32:57 -0500 |
---|---|---|
committer | Doug Ledford <[email protected]> | 2016-04-28 16:32:53 -0400 |
commit | bd57aeae563c8f032d6eee1c151f12b03191f053 (patch) | |
tree | f50c5c2e2e896d761e65804a2f010453c8add1bf | |
parent | b3437e0d5ab56d0439ff0ac50e190cfbb6711096 (diff) |
RDMA/i40iw: Correct max message size in query port
Fix to correct max reported message size in query port.
Signed-off-by: Mustafa Ismail <[email protected]>
Signed-off-by: Faisal Latif <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
-rw-r--r-- | drivers/infiniband/hw/i40iw/i40iw_verbs.c | 2 |
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; } |