summaryrefslogtreecommitdiffstats
path: root/fs/jffs2/debug.h
diff options
context:
space:
mode:
authorDavid Woodhouse2008-04-23 17:43:15 +0200
committerDavid Woodhouse2008-04-23 17:43:15 +0200
commit2c61cb250cf7e8cdd3b83b79b76d2ea0b3da010a (patch)
treef26338bca0b880f4c21aa6ddea0f5c3d3ef33ff8 /fs/jffs2/debug.h
parent[JFFS2] Fix jffs2_reserve_space() when all blocks are pending erasure. (diff)
downloadkernel-qcow2-linux-2c61cb250cf7e8cdd3b83b79b76d2ea0b3da010a.tar.gz
kernel-qcow2-linux-2c61cb250cf7e8cdd3b83b79b76d2ea0b3da010a.tar.xz
kernel-qcow2-linux-2c61cb250cf7e8cdd3b83b79b76d2ea0b3da010a.zip
[JFFS2] Introduce dbg_readinode2 log level, use it to shut read_dnode() up
We haven't seen bugs in this for a while now, since the rewrite. No need to be _quite_ so verbose... Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/debug.h')
-rw-r--r--fs/jffs2/debug.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/jffs2/debug.h b/fs/jffs2/debug.h
index 4130adabd76e..9645275023e6 100644
--- a/fs/jffs2/debug.h
+++ b/fs/jffs2/debug.h
@@ -38,6 +38,7 @@
#if CONFIG_JFFS2_FS_DEBUG > 1
#define JFFS2_DBG_FRAGTREE2_MESSAGES
+#define JFFS2_DBG_READINODE2_MESSAGES
#define JFFS2_DBG_MEMALLOC_MESSAGES
#endif
@@ -115,6 +116,11 @@
#else
#define dbg_readinode(fmt, ...)
#endif
+#ifdef JFFS2_DBG_READINODE2_MESSAGES
+#define dbg_readinode2(fmt, ...) JFFS2_DEBUG(fmt, ##__VA_ARGS__)
+#else
+#define dbg_readinode2(fmt, ...)
+#endif
/* Fragtree build debugging messages */
#ifdef JFFS2_DBG_FRAGTREE_MESSAGES