Skip to content

Commit ddbe172

Browse files
authored
Merge pull request #3539 from thananon/usNIC_fi_ep_bind
usNIC: fix fi_ep_bind flag. FI_RECV should not be associated with address vector.
2 parents c4f64c3 + a705f2c commit ddbe172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/mca/btl/usnic/btl_usnic_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1659,7 +1659,7 @@ static int create_ep(opal_btl_usnic_module_t* module,
16591659
rc, fi_strerror(-rc));
16601660
return OPAL_ERR_OUT_OF_RESOURCE;
16611661
}
1662-
rc = fi_ep_bind(channel->ep, &module->av->fid, FI_RECV);
1662+
rc = fi_ep_bind(channel->ep, &module->av->fid, NULL);
16631663
if (0 != rc) {
16641664
opal_show_help("help-mpi-btl-usnic.txt",
16651665
"internal error during init",

0 commit comments

Comments
 (0)