1
1
Fails to compile in environments with --disable-mpi

This commit was SVN r21785.
Этот коммит содержится в:
Rainer Keller 2009-08-10 17:46:25 +00:00
родитель 9c2b993589
Коммит 6050020c54
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3124,7 +3124,7 @@ static int progress_one_device(mca_btl_openib_device_t *device)
ret = btl_openib_handle_incoming(btl, to_com_frag(frag)->endpoint,
frag, size - sizeof(mca_btl_openib_footer_t));
if (ret != MPI_SUCCESS) {
if (ret != OMPI_SUCCESS) {
btl->error_cb(&btl->super, MCA_BTL_ERROR_FLAGS_FATAL);
return 0;
}

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

@ -767,7 +767,7 @@ void mca_btl_openib_endpoint_send_credits(mca_btl_openib_endpoint_t* endpoint,
assert(frag->qp_idx == qp);
credits_hdr = (mca_btl_openib_rdma_credits_header_t*)
to_base_frag(frag)->segment.seg_addr.pval;
if(acquire_eager_rdma_send_credit(endpoint) == MPI_SUCCESS) {
if(OMPI_SUCCESS == acquire_eager_rdma_send_credit(endpoint)) {
do_rdma = true;
} else {
if(OPAL_THREAD_ADD32(&endpoint->qps[qp].u.pp_qp.cm_sent, 1) >