[JFFS2] Honour TEST_TOTLEN macro in debugging code. ref->__totlen is going!
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
parent
85a62db624
commit
27e6b8e388
|
@ -400,7 +400,10 @@ __jffs2_dbg_dump_node_refs_nolock(struct jffs2_sb_info *c,
|
||||||
|
|
||||||
printk(JFFS2_DBG);
|
printk(JFFS2_DBG);
|
||||||
for (ref = jeb->first_node; ; ref = ref_next(ref)) {
|
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))
|
if (ref_next(ref))
|
||||||
printk("->");
|
printk("->");
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue