Skip to content

Commit

Permalink
BUG_ON() Conversion in md/dm-path-selector.c
Browse files Browse the repository at this point in the history
this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
  • Loading branch information
Eric Sesterhenn authored and Adrian Bunk committed Mar 26, 2006
1 parent 6dd44a7 commit c163c72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/md/dm-path-selector.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ void dm_put_path_selector(struct path_selector_type *pst)
if (--psi->use == 0)
module_put(psi->pst.module);

if (psi->use < 0)
BUG();
BUG_ON(psi->use < 0);

out:
up_read(&_ps_lock);
Expand Down

0 comments on commit c163c72

Please sign in to comment.