Skip to content

Commit

Permalink
Merge pull request #7060 from jsquyres/pr/usnic-mca-updates
Browse files Browse the repository at this point in the history
BTL usnic MCA updates
  • Loading branch information
jsquyres committed Oct 15, 2019
2 parents e1e6d8b + 3080033 commit b6c4d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opal/mca/btl/usnic/btl_usnic_mca.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,15 +246,15 @@ 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",
100000, &mca_btl_usnic_component.retrans_timeout,
5000, &mca_btl_usnic_component.retrans_timeout,
REGINT_GE_ONE, OPAL_INFO_LVL_5));

CHECK(reg_int("max_resends_per_iteration", "Maximum number of frames to resend in a single iteration through usNIC component progress",
16, &mca_btl_usnic_component.max_resends_per_iteration,
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",
0, &mca_btl_usnic_component.ack_iteration_delay,
4, &mca_btl_usnic_component.ack_iteration_delay,
REGINT_GE_ZERO, OPAL_INFO_LVL_5));

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

0 comments on commit b6c4d5c

Please sign in to comment.