diff options
author | Artem B. Bityutskiy <dedekind@infradead.org> | 2005-07-17 08:01:46 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-06 10:29:43 -0500 |
commit | 61a39b694137cef6059a0714c3b1847aabe53b90 (patch) | |
tree | 8bba8f467a8a938d21cecb2ed63489246982b82e /fs/jffs2/gc.c | |
parent | 2b79adcca147c9f8fd1094ab4cb342d7e1790d70 (diff) |
[JFFS2] Debug code clean up - step 2
If debugging is disabled, define debugging functions as empty macros, instead
of using Dx() explicitly.
Signed-off-by: Artem B. Bityutskiy <dedekind@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/jffs2/gc.c')
-rw-r--r-- | fs/jffs2/gc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jffs2/gc.c b/fs/jffs2/gc.c index 337ab49ab24b..6b5da0a1d319 100644 --- a/fs/jffs2/gc.c +++ b/fs/jffs2/gc.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * | 7 | * |
8 | * For licensing information, see the file 'LICENCE' in this directory. | 8 | * For licensing information, see the file 'LICENCE' in this directory. |
9 | * | 9 | * |
10 | * $Id: gc.c,v 1.149 2005/07/17 06:56:21 dedekind Exp $ | 10 | * $Id: gc.c,v 1.150 2005/07/17 12:01:43 dedekind Exp $ |
11 | * | 11 | * |
12 | */ | 12 | */ |
13 | 13 | ||
@@ -111,7 +111,7 @@ again: | |||
111 | ret->wasted_size = 0; | 111 | ret->wasted_size = 0; |
112 | } | 112 | } |
113 | 113 | ||
114 | D2(jffs2_dbg_dump_block_lists(c)); | 114 | jffs2_dbg_dump_block_lists(c); |
115 | return ret; | 115 | return ret; |
116 | } | 116 | } |
117 | 117 | ||
@@ -142,7 +142,7 @@ int jffs2_garbage_collect_pass(struct jffs2_sb_info *c) | |||
142 | if (c->checked_ino > c->highest_ino) { | 142 | if (c->checked_ino > c->highest_ino) { |
143 | printk(KERN_CRIT "Checked all inodes but still 0x%x bytes of unchecked space?\n", | 143 | printk(KERN_CRIT "Checked all inodes but still 0x%x bytes of unchecked space?\n", |
144 | c->unchecked_size); | 144 | c->unchecked_size); |
145 | D2(jffs2_dbg_dump_block_lists(c)); | 145 | jffs2_dbg_dump_block_lists(c); |
146 | spin_unlock(&c->erase_completion_lock); | 146 | spin_unlock(&c->erase_completion_lock); |
147 | BUG(); | 147 | BUG(); |
148 | } | 148 | } |