Skip to content

Commit ed1ccf3

Browse files
authored
Merge pull request #10621 from MamziB/mamzi/flush-opal-progress
OSC/UCX: Fix the opal_progress call condition inside flush
2 parents f649dd4 + e2cf80b commit ed1ccf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/mca/common/ucx/common_ucx_wpool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ static inline int opal_common_ucx_wait_request_mt(ucs_status_ptr_t request, cons
294294
break;
295295
}
296296
ctr--;
297-
} while (ctr > 0 && ret > 0 && status == UCS_INPROGRESS);
297+
} while (ctr > 0 && ret == 0 && status == UCS_INPROGRESS);
298298
opal_mutex_unlock(&winfo->mutex);
299299
if (!ctr) {
300300
opal_progress();

0 commit comments

Comments
 (0)