Skip to content

Commit 2658be9

Browse files
authored
Merge pull request #3562 from thananon/pr/v2.0.x_fi_ep_bind
v2.0.x: usNIC: fix fi_ep_bind flag. FI_RECV should not be associated with av.
2 parents 17023a9 + dab2f6a commit 2658be9

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
@@ -1649,7 +1649,7 @@ static int create_ep(opal_btl_usnic_module_t* module,
16491649
rc, fi_strerror(-rc));
16501650
return OPAL_ERR_OUT_OF_RESOURCE;
16511651
}
1652-
rc = fi_ep_bind(channel->ep, &module->av->fid, FI_RECV);
1652+
rc = fi_ep_bind(channel->ep, &module->av->fid, 0);
16531653
if (0 != rc) {
16541654
opal_show_help("help-mpi-btl-usnic.txt",
16551655
"internal error during init",

0 commit comments

Comments
 (0)