1
1

usnic: update for libfabric API change

Use FI_ADDR_UNSPEC for posting a receive from an unspecified source.
Этот коммит содержится в:
Jeff Squyres 2014-12-09 06:06:52 -08:00
родитель f5a07f651c
Коммит 6e24a1eb85
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2060,7 +2060,7 @@ static int init_one_channel(opal_btl_usnic_module_t *module,
rseg->rs_len = segsize;
rc = fi_recv(channel->ep, rseg->rs_protocol_header, segsize,
NULL, FI_ADDR_NOTAVAIL, rseg);
NULL, FI_ADDR_UNSPEC, rseg);
if (0 != rc) {
opal_show_help("help-mpi-btl-usnic.txt",
"internal error during init",

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

@ -28,7 +28,7 @@ opal_btl_usnic_post_recv_list(opal_btl_usnic_channel_t *channel)
for (rseg = channel->repost_recv_head; NULL != rseg; rseg = rseg->rs_next) {
rc = fi_recv(channel->ep, rseg->rs_protocol_header,
rseg->rs_len, NULL, FI_ADDR_NOTAVAIL, rseg);
rseg->rs_len, NULL, FI_ADDR_UNSPEC, rseg);
if (0 != rc) {
return rc;
}