[Ocfs2-commits] smushran commits r3098 - branches/ocfs2-1.2/fs/ocfs2/cluster
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Tue May 6 13:45:25 PDT 2008
Author: smushran
Date: 2008-05-06 13:45:25 -0700 (Tue, 06 May 2008)
New Revision: 3098
Modified:
branches/ocfs2-1.2/fs/ocfs2/cluster/masklog.h
Log:
ocfs2: Filter -ENOSPC in mlog_errno()
Mainline commit ef9f86ceb63f2803c9aada249986b84d2f99c635
Author: Mark Fasheh <mfasheh at ca-build8.us.oracle.com>
Date: Mon Nov 19 18:31:17 2007 -0800
It's almost never worth printing in that situation and we keep forgetting to
manually filter it out.
Signed-off-by: jlbec
Modified: branches/ocfs2-1.2/fs/ocfs2/cluster/masklog.h
===================================================================
--- branches/ocfs2-1.2/fs/ocfs2/cluster/masklog.h 2008-05-06 20:43:50 UTC (rev 3097)
+++ branches/ocfs2-1.2/fs/ocfs2/cluster/masklog.h 2008-05-06 20:45:25 UTC (rev 3098)
@@ -198,7 +198,7 @@
} while (0)
#define mlog_errno(st) do { \
- if ((st) != -ERESTARTSYS && (st) != -EINTR) \
+ if ((st) != -ERESTARTSYS && (st) != -EINTR && (st) != -ENOSPC) \
mlog(ML_ERROR, "status = %lld\n", (long long)(st)); \
} while (0)
More information about the Ocfs2-commits
mailing list