1
1

fixed regression introduced w/ change to support request allocation/caching w/in pml

(should now support more than two processes)

This commit was SVN r1822.
Этот коммит содержится в:
Tim Woodall 2004-07-30 16:29:56 +00:00
родитель a7471009ac
Коммит 952daced67

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

@ -44,7 +44,6 @@
OMPI_FREE_LIST_WAIT(&mca_pml_teg.teg_send_requests, item, rc); \ OMPI_FREE_LIST_WAIT(&mca_pml_teg.teg_send_requests, item, rc); \
sendreq = (mca_pml_base_send_request_t*)item; \ sendreq = (mca_pml_base_send_request_t*)item; \
sendreq->req_ptl = ptl; \ sendreq->req_ptl = ptl; \
sendreq->req_peer = ptl_proc->ptl_peer; \
ptl->ptl_request_init(ptl, sendreq); \ ptl->ptl_request_init(ptl, sendreq); \
} \ } \
\ \
@ -54,8 +53,9 @@
OMPI_FREE_LIST_WAIT(&mca_pml_teg.teg_send_requests, item, rc); \ OMPI_FREE_LIST_WAIT(&mca_pml_teg.teg_send_requests, item, rc); \
sendreq = (mca_pml_base_send_request_t*)item; \ sendreq = (mca_pml_base_send_request_t*)item; \
sendreq->req_ptl = ptl_proc->ptl; \ sendreq->req_ptl = ptl_proc->ptl; \
sendreq->req_peer = ptl_proc->ptl_peer; \
} \ } \
/* update request to point to current peer */ \
sendreq->req_peer = ptl_proc->ptl_peer; \
} }