Browse Source

[JFFS2] Honour TEST_TOTLEN macro in debugging code. ref->__totlen is going!

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
David Woodhouse 17 years ago
parent
commit
27e6b8e388
1 changed files with 4 additions and 1 deletions
  1. 4 1
      fs/jffs2/debug.c

+ 4 - 1
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