Commit c49139d8 authored by Artem Bityutskiy's avatar Artem Bityutskiy

UBIFS: remove BUG statement

Remove a 'BUG()' statement when we are unable to find a bud and add a
similar 'ubifs_assert()' statement instead.
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent e76a4526
...@@ -487,7 +487,6 @@ static int replay_bud(struct ubifs_info *c, struct bud_entry *b) ...@@ -487,7 +487,6 @@ static int replay_bud(struct ubifs_info *c, struct bud_entry *b)
int jhead = b->bud->jhead; int jhead = b->bud->jhead;
struct ubifs_scan_leb *sleb; struct ubifs_scan_leb *sleb;
struct ubifs_scan_node *snod; struct ubifs_scan_node *snod;
struct ubifs_bud *bud;
dbg_mnt("replay bud LEB %d, head %d, offs %d", lnum, jhead, offs); dbg_mnt("replay bud LEB %d, head %d, offs %d", lnum, jhead, offs);
...@@ -608,10 +607,7 @@ static int replay_bud(struct ubifs_info *c, struct bud_entry *b) ...@@ -608,10 +607,7 @@ static int replay_bud(struct ubifs_info *c, struct bud_entry *b)
goto out; goto out;
} }
bud = ubifs_search_bud(c, lnum); ubifs_assert(ubifs_search_bud(c, lnum));
if (!bud)
BUG();
ubifs_assert(sleb->endpt - offs >= used); ubifs_assert(sleb->endpt - offs >= used);
ubifs_assert(sleb->endpt % c->min_io_size == 0); ubifs_assert(sleb->endpt % c->min_io_size == 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment