projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2759236
)
ocfs2: Filter -ENOSPC in mlog_errno()
author
Mark Fasheh
<mfasheh@ca-build8.us.oracle.com>
Tue, 20 Nov 2007 02:31:17 +0000
(18:31 -0800)
committer
Mark Fasheh
<mark.fasheh@oracle.com>
Wed, 28 Nov 2007 00:47:01 +0000
(16:47 -0800)
It's almost never worth printing in that situation and we keep forgetting to
manually filter it out.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
fs/ocfs2/cluster/masklog.h
patch
|
blob
|
history
diff --git
a/fs/ocfs2/cluster/masklog.h
b/fs/ocfs2/cluster/masklog.h
index
cd04606
..
597e064
100644
(file)
--- a/
fs/ocfs2/cluster/masklog.h
+++ b/
fs/ocfs2/cluster/masklog.h
@@
-212,7
+212,7
@@
extern struct mlog_bits mlog_and_bits, mlog_not_bits;
#define mlog_errno(st) do { \
int _st = (st); \
if (_st != -ERESTARTSYS && _st != -EINTR && \
- _st != AOP_TRUNCATED_PAGE
)
\
+ _st != AOP_TRUNCATED_PAGE
&& _st != -ENOSPC)
\
mlog(ML_ERROR, "status = %lld\n", (long long)_st); \
} while (0)