1
1

in mxm, use sender_len field and not actual_len when returning result from probe

This commit was SVN r25993.
Этот коммит содержится в:
Mike Dubman 2012-02-21 19:55:16 +00:00
родитель a83da303c5
Коммит 81bd5eee8d

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

@ -33,7 +33,7 @@ int ompi_mtl_mxm_iprobe(struct mca_mtl_base_module_t* mtl,
status->MPI_SOURCE = req.completion.sender_imm;
status->MPI_TAG = req.completion.sender_tag;
status->MPI_ERROR = ompi_mtl_mxm_to_mpi_status(err);
status->_ucount = req.completion.actual_len;
status->_ucount = req.completion.sender_len;
}
return OMPI_SUCCESS;
} else if (MXM_ERR_NO_MESSAGE == err) {