|
@@ -321,17 +321,11 @@ void fscache_put_context(struct fscache_cookie *cookie, void *context)
|
|
#define dbgprintk(FMT, ...) \
|
|
#define dbgprintk(FMT, ...) \
|
|
printk(KERN_DEBUG "[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
|
|
printk(KERN_DEBUG "[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
|
|
|
|
|
|
-/* make sure we maintain the format strings, even when debugging is disabled */
|
|
|
|
-static inline __attribute__((format(printf, 1, 2)))
|
|
|
|
-void _dbprintk(const char *fmt, ...)
|
|
|
|
-{
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
|
|
#define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
|
|
#define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
|
|
#define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
|
|
#define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
|
|
#define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
|
|
|
|
|
|
-#define kjournal(FMT, ...) _dbprintk(FMT, ##__VA_ARGS__)
|
|
|
|
|
|
+#define kjournal(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
|
|
|
|
|
|
#ifdef __KDEBUG
|
|
#ifdef __KDEBUG
|
|
#define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS__)
|
|
#define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS__)
|
|
@@ -358,9 +352,9 @@ do { \
|
|
} while (0)
|
|
} while (0)
|
|
|
|
|
|
#else
|
|
#else
|
|
-#define _enter(FMT, ...) _dbprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
|
|
|
|
-#define _leave(FMT, ...) _dbprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
|
|
|
|
-#define _debug(FMT, ...) _dbprintk(FMT, ##__VA_ARGS__)
|
|
|
|
|
|
+#define _enter(FMT, ...) no_printk("==> %s("FMT")", __func__, ##__VA_ARGS__)
|
|
|
|
+#define _leave(FMT, ...) no_printk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
|
|
|
|
+#define _debug(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/*
|
|
/*
|