BUG_ON() Conversion in mm/mempool.c
authorEric Sesterhenn <snakebyte@gmx.de>
Sun, 26 Mar 2006 16:31:56 +0000 (18:31 +0200)
committerAdrian Bunk <bunk@stusta.de>
Sun, 26 Mar 2006 16:31:56 +0000 (18:31 +0200)
this changes if() BUG(); constructs to BUG_ON() which is
cleaner, contains unlikely() and can better optimized away.

Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
mm/mempool.c

index f71893ed354358fcf2c6dcfc576a7a7730852cc6..9ef13dd68ab711e4b093189d134d91e76ee364b1 100644 (file)
@@ -183,8 +183,8 @@ EXPORT_SYMBOL(mempool_resize);
  */
 void mempool_destroy(mempool_t *pool)
 {
-       if (pool->curr_nr != pool->min_nr)
-               BUG();          /* There were outstanding elements */
+       /* Check for outstanding elements */
+       BUG_ON(pool->curr_nr != pool->min_nr);
        free_pool(pool);
 }
 EXPORT_SYMBOL(mempool_destroy);