[Ocfs2-commits] mfasheh commits r1506 - branches/dlm-changes/src

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Tue Sep 28 21:42:39 CDT 2004


Author: mfasheh
Date: 2004-09-28 21:42:37 -0500 (Tue, 28 Sep 2004)
New Revision: 1506

Modified:
   branches/dlm-changes/src/namei.c
Log:
* fix some broken errors



Modified: branches/dlm-changes/src/namei.c
===================================================================
--- branches/dlm-changes/src/namei.c	2004-09-29 00:47:13 UTC (rev 1505)
+++ branches/dlm-changes/src/namei.c	2004-09-29 02:42:37 UTC (rev 1506)
@@ -346,14 +346,14 @@
 					     dentry->d_name.name, 
 					     dentry->d_name.len, &de_bh);
 	if (status < 0) {
-		LOG_ERROR_STATUS (status = -ENOMEM);
+		LOG_ERROR_STATUS (status);
 		goto leave;
 	}
 
 	/* reserve an inode spot */
 	status = ocfs_reserve_new_inode(osb, handle, &inode_ac);
 	if (status < 0) {
-		LOG_ERROR_STATUS (status = -ENOMEM);
+		LOG_ERROR_STATUS (status);
 		goto leave;
 	}
 



More information about the Ocfs2-commits mailing list