mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
[JFFS2] print a message when marking bad block
New bad eraseblock is an event which is important enough to be printed about. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
parent
c7258a4477
commit
0feba829ee
1 changed files with 1 additions and 1 deletions
|
@ -1090,7 +1090,7 @@ int jffs2_write_nand_badblock(struct jffs2_sb_info *c, struct jffs2_eraseblock *
|
|||
if (!c->mtd->block_markbad)
|
||||
return 1; // What else can we do?
|
||||
|
||||
D1(printk(KERN_WARNING "jffs2_write_nand_badblock(): Marking bad block at %08x\n", bad_offset));
|
||||
printk(KERN_WARNING "JFFS2: marking eraseblock at %08x\n as bad", bad_offset);
|
||||
ret = c->mtd->block_markbad(c->mtd, bad_offset);
|
||||
|
||||
if (ret) {
|
||||
|
|
Loading…
Reference in a new issue