[Ocfs2-commits] mfasheh commits r1608 - branches/dlm-glue/src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Nov 1 14:10:15 CST 2004


Author: mfasheh
Date: 2004-11-01 14:10:14 -0600 (Mon, 01 Nov 2004)
New Revision: 1608

Modified:
   branches/dlm-glue/src/inode.c
Log:
* don't fail ocfs_mark_inode_dirty in case of error from
  ocfs_journal_dirty (which we shouldn't ever be getting anyway).



Modified: branches/dlm-glue/src/inode.c
===================================================================
--- branches/dlm-glue/src/inode.c	2004-11-01 20:09:18 UTC (rev 1607)
+++ branches/dlm-glue/src/inode.c	2004-11-01 20:10:14 UTC (rev 1608)
@@ -982,10 +982,8 @@
 //	fe->i_generation = inode->i_generation;
 
 	status = ocfs_journal_dirty(handle, bh);
-	if (status < 0) {
+	if (status < 0)
 		LOG_ERROR_STATUS(status);
-		goto leave;
-	}
 
 	status = 0;
 leave:



More information about the Ocfs2-commits mailing list