1
1

btl/usnic: increase default retrans_timeout

Significantly increase the default retrans timeout.  If the
retrans timeout is too soon, we can end up in a retransmission storm
where the logic will continually re-transmit the same frames during a
single run through the usNIC progress function (because the timer for
a single frame expires before we have run through re-transmitting all
the frames pending re-transmission).

Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
(cherry picked from commit 3cc95d86b2123f38f392e56adca7ac8a1fef6454)
Этот коммит содержится в:
Jeff Squyres 2019-10-04 11:59:01 -07:00
родитель b5cb03450c
Коммит 8f929c68f1

Просмотреть файл

@ -257,7 +257,7 @@ int opal_btl_usnic_component_register(void)
mca_btl_usnic_component.udp_port_base = (int) udp_port_base;
CHECK(reg_int("retrans_timeout", "Number of microseconds before retransmitting a frame",
5000, &mca_btl_usnic_component.retrans_timeout,
100000, &mca_btl_usnic_component.retrans_timeout,
REGINT_GE_ONE, OPAL_INFO_LVL_5));
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",