diff options
Diffstat (limited to 'fs/ocfs2/cluster/masklog.h')
-rw-r--r-- | fs/ocfs2/cluster/masklog.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ocfs2/cluster/masklog.h b/fs/ocfs2/cluster/masklog.h index f5ef5ea61a05..e8c56a3d9c64 100644 --- a/fs/ocfs2/cluster/masklog.h +++ b/fs/ocfs2/cluster/masklog.h | |||
@@ -212,11 +212,10 @@ extern struct mlog_bits mlog_and_bits, mlog_not_bits; | |||
212 | mlog(ML_ENTRY, "ENTRY:\n"); \ | 212 | mlog(ML_ENTRY, "ENTRY:\n"); \ |
213 | } while (0) | 213 | } while (0) |
214 | 214 | ||
215 | /* We disable this for old compilers since they don't have support for | 215 | /* |
216 | * __builtin_types_compatible_p. | 216 | * We disable this for sparse. |
217 | */ | 217 | */ |
218 | #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) && \ | 218 | #if !defined(__CHECKER__) |
219 | !defined(__CHECKER__) | ||
220 | #define mlog_exit(st) do { \ | 219 | #define mlog_exit(st) do { \ |
221 | if (__builtin_types_compatible_p(typeof(st), unsigned long)) \ | 220 | if (__builtin_types_compatible_p(typeof(st), unsigned long)) \ |
222 | mlog(ML_EXIT, "EXIT: %lu\n", (unsigned long) (st)); \ | 221 | mlog(ML_EXIT, "EXIT: %lu\n", (unsigned long) (st)); \ |