[PATCH 3/6 linux-next] ubifs: simplify return in layout_cnodes()
Fabian Frederick
fabf at skynet.be
Fri May 15 14:43:57 PDT 2015
Directly return dbg_chk_lpt_sz() instead of storing
value in err and testing it.
Signed-off-by: Fabian Frederick <fabf at skynet.be>
---
fs/ubifs/lpt_commit.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c
index ce89bdc..79a8e96 100644
--- a/fs/ubifs/lpt_commit.c
+++ b/fs/ubifs/lpt_commit.c
@@ -313,10 +313,7 @@ static int layout_cnodes(struct ubifs_info *c)
alen = ALIGN(offs, c->min_io_size);
upd_ltab(c, lnum, c->leb_size - alen, alen - offs);
dbg_chk_lpt_sz(c, 4, alen - offs);
- err = dbg_chk_lpt_sz(c, 3, alen);
- if (err)
- return err;
- return 0;
+ return dbg_chk_lpt_sz(c, 3, alen);
no_space:
ubifs_err(c, "LPT out of space at LEB %d:%d needing %d, done_ltab %d, done_lsave %d",
--
2.4.0
More information about the linux-mtd
mailing list