diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-04-23 01:25:33 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-04-23 01:25:33 +0100 |
commit | 27e6b8e388fffb332476ddab00bbe05cd5da5f32 (patch) | |
tree | 1088ce21ae6fe147dccd1da6ee3653782cf742a0 /fs/jffs2/debug.c | |
parent | 85a62db6245a82f07a31b387915ee2180b9ea11a (diff) |
[JFFS2] Honour TEST_TOTLEN macro in debugging code. ref->__totlen is going!
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/debug.c')
-rw-r--r-- | fs/jffs2/debug.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/jffs2/debug.c b/fs/jffs2/debug.c index 590bdd6e0147..e198468a8c68 100644 --- a/fs/jffs2/debug.c +++ b/fs/jffs2/debug.c @@ -400,7 +400,10 @@ __jffs2_dbg_dump_node_refs_nolock(struct jffs2_sb_info *c, printk(JFFS2_DBG); for (ref = jeb->first_node; ; ref = ref_next(ref)) { - printk("%#08x(%#x)", ref_offset(ref), ref->__totlen); + printk("%#08x", ref_offset(ref)); +#ifdef TEST_TOTLEN + printk("(%x)", ref->__totlen); +#endif if (ref_next(ref)) printk("->"); else |