ubifs: Simplify the return expression of run_gc()
Simplify the return expression. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn> Reviewed-by: Tudor Ambarus <tudor.ambarus@microchip.com> Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
c14adb1cf7
commit
5bff56edab
1 changed files with 2 additions and 5 deletions
|
@ -65,7 +65,7 @@ static void shrink_liability(struct ubifs_info *c, int nr_to_write)
|
||||||
*/
|
*/
|
||||||
static int run_gc(struct ubifs_info *c)
|
static int run_gc(struct ubifs_info *c)
|
||||||
{
|
{
|
||||||
int err, lnum;
|
int lnum;
|
||||||
|
|
||||||
/* Make some free space by garbage-collecting dirty space */
|
/* Make some free space by garbage-collecting dirty space */
|
||||||
down_read(&c->commit_sem);
|
down_read(&c->commit_sem);
|
||||||
|
@ -76,10 +76,7 @@ static int run_gc(struct ubifs_info *c)
|
||||||
|
|
||||||
/* GC freed one LEB, return it to lprops */
|
/* GC freed one LEB, return it to lprops */
|
||||||
dbg_budg("GC freed LEB %d", lnum);
|
dbg_budg("GC freed LEB %d", lnum);
|
||||||
err = ubifs_return_leb(c, lnum);
|
return ubifs_return_leb(c, lnum);
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue