]> Git Repo - linux.git/commitdiff
BUG_ON() Conversion in md/dm-path-selector.c
authorEric Sesterhenn <[email protected]>
Sun, 26 Mar 2006 16:21:58 +0000 (18:21 +0200)
committerAdrian Bunk <[email protected]>
Sun, 26 Mar 2006 16:21:58 +0000 (18:21 +0200)
this changes if() BUG(); constructs to BUG_ON() which is
cleaner and can better optimized away

Signed-off-by: Eric Sesterhenn <[email protected]>
Signed-off-by: Adrian Bunk <[email protected]>
drivers/md/dm-path-selector.c

index a28c1c2b4ef5c703d2d5ce4f5c67bb2858483542..f10a0c89b3f4e542b3901790504a212d612741ef 100644 (file)
@@ -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);
This page took 0.050753 seconds and 4 git commands to generate.