[Ocfs2-commits] mfasheh commits r1901 - trunk/fs/ocfs2

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Tue Feb 22 16:47:44 CST 2005


Author: mfasheh
Signed-off-by: zab
Date: 2005-02-22 16:47:43 -0600 (Tue, 22 Feb 2005)
New Revision: 1901

Modified:
   trunk/fs/ocfs2/journal.c
Log:
* this conditional on when to print out an error status was broken, fix.

Signed-off-by: zab



Modified: trunk/fs/ocfs2/journal.c
===================================================================
--- trunk/fs/ocfs2/journal.c	2005-02-22 21:22:26 UTC (rev 1900)
+++ trunk/fs/ocfs2/journal.c	2005-02-22 22:47:43 UTC (rev 1901)
@@ -1256,7 +1256,7 @@
 	flags = OCFS2_META_LOCK_RECOVERY|OCFS2_META_LOCK_NOQUEUE;
 	status = ocfs2_meta_lock_flags(inode, NULL, NULL, 1, flags);
 	if (status < 0) {
-		if (status != -EAGAIN || status != -EINTR)
+		if (status != -EAGAIN && status != -EINTR)
 			LOG_ERROR_STATUS(status);
 		goto bail;
 	}



More information about the Ocfs2-commits mailing list