diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-07-22 23:32:51 +0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-10-14 14:10:20 +0400 |
commit | 8d2d4011f1398d984819c65043abb559c451a3c8 (patch) | |
tree | a563add73b96dd245acffbe8b3e3288441fce7f8 /drivers/mtd/ubi/io.c | |
parent | 8bc22961966b845aa5f965be30771902146c2fcc (diff) | |
download | linux-8d2d4011f1398d984819c65043abb559c451a3c8.tar.xz |
UBI: add more prints
I hit those situations and found out lack of print messages. Add more prints
when erase problems occur.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/io.c')
-rw-r--r-- | drivers/mtd/ubi/io.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c index b0d8f4cede97..d42ec687b014 100644 --- a/drivers/mtd/ubi/io.c +++ b/drivers/mtd/ubi/io.c @@ -430,13 +430,16 @@ static int torture_peb(const struct ubi_device *ubi, int pnum) err = patt_count; out: - if (err == UBI_IO_BITFLIPS || err == -EBADMSG) + if (err == UBI_IO_BITFLIPS || err == -EBADMSG) { /* * If a bit-flip or data integrity error was detected, the test * has not passed because it happened on a freshly erased * physical eraseblock which means something is wrong with it. */ + ubi_err("read problems on freshly erased PEB %d, must be bad", + pnum); err = -EIO; + } vfree(buf); return err; } |