Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 0f881db

Browse files
committed
usnic: change retrans timeout to 5ms
A bunch of empirical testing has shown that increasing the retranmit timeout from 1ms to 5ms doesn't adversely affect performance, yet decreases the number of gratuitious retransmissions. (cherry picked from commit c2615a4)
1 parent bc8a87b commit 0f881db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/mca/btl/usnic/btl_usnic_mca.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ int opal_btl_usnic_component_register(void)
245245
mca_btl_usnic_component.udp_port_base = (int) udp_port_base;
246246

247247
CHECK(reg_int("retrans_timeout", "Number of microseconds before retransmitting a frame",
248-
1000, &mca_btl_usnic_component.retrans_timeout,
248+
5000, &mca_btl_usnic_component.retrans_timeout,
249249
REGINT_GE_ONE, OPAL_INFO_LVL_5));
250250

251251
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)