1
1

only poll high priority qp 1 per progress.

This commit was SVN r6918.
Этот коммит содержится в:
Galen Shipman 2005-08-17 22:52:56 +00:00
родитель 4b3969d2ab
Коммит 589d53e828

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

@ -558,7 +558,6 @@ int mca_btl_mvapi_component_progress()
* we will check the high priority and process them until there are none left.
* note that low priority messages are only processed one per progress call.
*/
do{
ret = VAPI_poll_cq(mvapi_btl->nic, mvapi_btl->cq_hndl_high, &comp);
if(VAPI_OK == ret) {
if(comp.status != VAPI_SUCCESS) {
@ -615,9 +614,7 @@ int mca_btl_mvapi_component_progress()
break;
}
}
}
while(VAPI_OK == ret);
ret = VAPI_poll_cq(mvapi_btl->nic, mvapi_btl->cq_hndl_low, &comp);
if(VAPI_OK == ret) {
if(comp.status != VAPI_SUCCESS) {