[Ocfs2-commits] mfasheh commits r1571 - trunk/src
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Wed Oct 13 20:35:31 CDT 2004
Author: mfasheh
Date: 2004-10-13 20:35:29 -0500 (Wed, 13 Oct 2004)
New Revision: 1571
Modified:
trunk/src/file.c
Log:
* don't print out -EINTR errors
Modified: trunk/src/file.c
===================================================================
--- trunk/src/file.c 2004-10-14 00:58:46 UTC (rev 1570)
+++ trunk/src/file.c 2004-10-14 01:35:29 UTC (rev 1571)
@@ -186,7 +186,8 @@
if (status < 0) {
oip->ip_open_cnt--;
- LOG_ERROR_STATUS(status);
+ if (status != -EINTR)
+ LOG_ERROR_STATUS(status);
goto leave_unlock;
}
More information about the Ocfs2-commits
mailing list