Skip to content

Commit

Permalink
[JFFS2] Revert Artem's Bunkage in debug messages.
Browse files Browse the repository at this point in the history
Random unthinking 'cleanup' caused debug messages like this:
   Obsoleting node at 0x0006daf4 of len 0x3a4: <7>Dirtying

If messages are continuation of an existing line, they don't need
to be prefixed with KERN_DEBUG.

THINK. Or you will be replaced by a small shell script.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
David Woodhouse committed May 24, 2006
1 parent 0305c86 commit c7c16c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/jffs2/nodemgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref

// Take care, that wasted size is taken into concern
if ((jeb->dirty_size || ISDIRTY(jeb->wasted_size + freed_len)) && jeb != c->nextblock) {
D1(printk(KERN_DEBUG "Dirtying\n"));
D1(printk("Dirtying\n"));
addedsize = freed_len;
jeb->dirty_size += freed_len;
c->dirty_size += freed_len;
Expand All @@ -539,7 +539,7 @@ void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref
}
}
} else {
D1(printk(KERN_DEBUG "Wasting\n"));
D1(printk("Wasting\n"));
addedsize = 0;
jeb->wasted_size += freed_len;
c->wasted_size += freed_len;
Expand Down

0 comments on commit c7c16c8

Please sign in to comment.