[Ocfs2-commits] manish commits r2375 - trunk/fs/ocfs2
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Tue Jun 7 18:57:16 CDT 2005
Author: manish
Signed-off-by: mfasheh
Date: 2005-06-07 18:57:14 -0500 (Tue, 07 Jun 2005)
New Revision: 2375
Modified:
trunk/fs/ocfs2/suballoc.c
Log:
Do not log ENOSPC return from ocfs2_reserve_clusters
Signed-off-by: mfasheh
Modified: trunk/fs/ocfs2/suballoc.c
===================================================================
--- trunk/fs/ocfs2/suballoc.c 2005-06-07 23:40:41 UTC (rev 2374)
+++ trunk/fs/ocfs2/suballoc.c 2005-06-07 23:57:14 UTC (rev 2375)
@@ -235,7 +235,8 @@
cl->cl_cpg,
&ac);
if (status < 0) {
- mlog_errno(status);
+ if (status != -ENOSPC)
+ mlog_errno(status);
goto bail;
}
More information about the Ocfs2-commits
mailing list