1
1

Merge pull request #6610 from jsquyres/pr/ob1-get-frag-fail-fix

v4.0.x: ob1 get_frag fail fix
Этот коммит содержится в:
Howard Pritchard 2019-04-23 09:27:08 -06:00 коммит произвёл GitHub
родитель 9b73e8a7c0 2a4bc0cb58
Коммит f3edfaa2ac
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -330,7 +330,9 @@ static int mca_pml_ob1_recv_request_get_frag_failed (mca_pml_ob1_rdma_frag_t *fr
if (OMPI_ERR_NOT_AVAILABLE == rc) {
/* get isn't supported for this transfer. tell peer to fallback on put */
rc = mca_pml_ob1_recv_request_put_frag (frag);
if (OMPI_ERR_OUT_OF_RESOURCE == rc) {
if (OMPI_SUCCESS == rc){
return OMPI_SUCCESS;
} else if (OMPI_ERR_OUT_OF_RESOURCE == rc) {
OPAL_THREAD_LOCK(&mca_pml_ob1.lock);
opal_list_append (&mca_pml_ob1.rdma_pending, (opal_list_item_t*)frag);
OPAL_THREAD_UNLOCK(&mca_pml_ob1.lock);