projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3437e0
)
RDMA/i40iw: Correct max message size in query port
author
Ismail, Mustafa
<
[email protected]
>
Mon, 18 Apr 2016 15:32:57 +0000
(10:32 -0500)
committer
Doug Ledford
<
[email protected]
>
Thu, 28 Apr 2016 20:32:53 +0000
(16:32 -0400)
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]
>
drivers/infiniband/hw/i40iw/i40iw_verbs.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/i40iw/i40iw_verbs.c
b/drivers/infiniband/hw/i40iw/i40iw_verbs.c
index 329f59a9f18a31151372c7e9c1ab4f514ba328a7..2534c5d1d7ecb9dccd652e3f912541b16dfa6928 100644
(file)
--- 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;
}