Skip to content

Commit b6c4d5c

Browse files
authored
Merge pull request #7060 from jsquyres/pr/usnic-mca-updates
BTL usnic MCA updates
2 parents e1e6d8b + 3080033 commit b6c4d5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opal/mca/btl/usnic/btl_usnic_mca.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,15 @@ int opal_btl_usnic_component_register(void)
246246
mca_btl_usnic_component.udp_port_base = (int) udp_port_base;
247247

248248
CHECK(reg_int("retrans_timeout", "Number of microseconds before retransmitting a frame",
249-
100000, &mca_btl_usnic_component.retrans_timeout,
249+
5000, &mca_btl_usnic_component.retrans_timeout,
250250
REGINT_GE_ONE, OPAL_INFO_LVL_5));
251251

252252
CHECK(reg_int("max_resends_per_iteration", "Maximum number of frames to resend in a single iteration through usNIC component progress",
253253
16, &mca_btl_usnic_component.max_resends_per_iteration,
254254
REGINT_GE_ONE, OPAL_INFO_LVL_5));
255255

256256
CHECK(reg_int("ack_iteration_delay", "Minimum number of times through usNIC \"progress\" function before checking to see if standalone ACKs need to be sent",
257-
0, &mca_btl_usnic_component.ack_iteration_delay,
257+
4, &mca_btl_usnic_component.ack_iteration_delay,
258258
REGINT_GE_ZERO, OPAL_INFO_LVL_5));
259259

260260
CHECK(reg_int("priority_limit", "Max size of \"priority\" messages (0 = use pre-set defaults; depends on number and type of devices available)",

0 commit comments

Comments
 (0)