Skip to content
Snippets Groups Projects
Commit d9682458 authored by Isaac Huang's avatar Isaac Huang
Browse files

b=12494,i=eeb:

-   increase send queue size for ciblnd/openiblnd.
parent 70dd0543
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,10 @@ tbd Cluster File Systems, Inc. <info@clusterfs.com> ...@@ -28,6 +28,10 @@ tbd Cluster File Systems, Inc. <info@clusterfs.com>
mxlnd - MX 1.2.1 or later, mxlnd - MX 1.2.1 or later,
ptllnd - Portals 3.3 / UNICOS/lc 1.5.x, 2.0.x ptllnd - Portals 3.3 / UNICOS/lc 1.5.x, 2.0.x
Severity : normal
Bugzilla : 12494
Description: increase send queue size for ciblnd/openiblnd
Severity : normal Severity : normal
Bugzilla : 12302 Bugzilla : 12302
Description: new userspace socklnd Description: new userspace socklnd
......
...@@ -988,12 +988,12 @@ kibnal_create_conn (void) ...@@ -988,12 +988,12 @@ kibnal_create_conn (void)
} }
} }
/* We can post up to IBLND_MSG_QUEUE_SIZE immediate/req messages and /* We can post up to IBNAL_RX_MSGS, which may also include an
* the same # of ack/nak/rdma+done messages */ * additional RDMA work item */
params.qp_create = (struct ib_qp_create_param) { params.qp_create = (struct ib_qp_create_param) {
.limit = { .limit = {
.max_outstanding_send_request = 3 * IBNAL_MSG_QUEUE_SIZE, .max_outstanding_send_request = 2 * IBNAL_RX_MSGS,
.max_outstanding_receive_request = IBNAL_RX_MSGS, .max_outstanding_receive_request = IBNAL_RX_MSGS,
.max_send_gather_element = 1, .max_send_gather_element = 1,
.max_receive_scatter_element = 1, .max_receive_scatter_element = 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment