directly return recover_head() and ubifs_leb_unmap() instead of storing value in err and testing it.
Signed-off-by: Fabian Frederick <[email protected]> --- fs/ubifs/recovery.c | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c index c640938..a2e1f7f 100644 --- a/fs/ubifs/recovery.c +++ b/fs/ubifs/recovery.c @@ -975,11 +975,8 @@ int ubifs_recover_inl_heads(struct ubifs_info *c, void *sbuf) return err; dbg_rcvry("checking LPT head at %d:%d", c->nhead_lnum, c->nhead_offs); - err = recover_head(c, c->nhead_lnum, c->nhead_offs, sbuf); - if (err) - return err; - return 0; + return recover_head(c, c->nhead_lnum, c->nhead_offs, sbuf); } /** @@ -1002,13 +999,9 @@ static int clean_an_unclean_leb(struct ubifs_info *c, dbg_rcvry("LEB %d len %d", lnum, len); - if (len == 0) { + if (len == 0) /* Nothing to read, just unmap it */ - err = ubifs_leb_unmap(c, lnum); - if (err) - return err; - return 0; - } + return ubifs_leb_unmap(c, lnum); err = ubifs_leb_read(c, lnum, buf, offs, len, 0); if (err && err != -EBADMSG) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

