From: Artem Bityutskiy Date: Sun, 22 Aug 2010 18:27:30 +0000 (+0300) Subject: UBIFS: improve error reporting when reading bad node X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3a8fa0ed3e1a8dc54f9297d2a2292b87e03e21b5;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git UBIFS: improve error reporting when reading bad node When an error happens during validation of read node, the typical situation is that the LEB we read is unmapped (due to some bug). It is handy to include the mapping status into the error message. Signed-off-by: Artem Bityutskiy --- diff --git a/fs/ubifs/io.c b/fs/ubifs/io.c index bcf5a16f30bb..9432431bf595 100644 --- a/fs/ubifs/io.c +++ b/fs/ubifs/io.c @@ -815,7 +815,8 @@ int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len, return 0; out: - ubifs_err("bad node at LEB %d:%d", lnum, offs); + ubifs_err("bad node at LEB %d:%d, LEB mapping status %d", lnum, offs, + ubi_is_mapped(c->ubi, lnum)); dbg_dump_node(c, buf); dbg_dump_stack(); return -EINVAL;