Skip to content

Commit a600525

Browse files
authored
Merge pull request #4653 from aravindksg/ofi_regression_fix
MTL OFI: Allow retries in MTL progress for interrupted syscalls
2 parents 3f7494a + fb68726 commit a600525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/mtl/ofi/mtl_ofi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ ompi_mtl_ofi_progress(void)
117117
exit(1);
118118
}
119119
} else {
120-
if (ret == -FI_EAGAIN) {
120+
if (ret == -FI_EAGAIN || ret == -EINTR) {
121121
break;
122122
} else {
123123
opal_output(0, "%s:%d: Error returned from fi_cq_read: %s(%zd).\n"

0 commit comments

Comments
 (0)