BUG_ON() Conversion in mm/mempool.c

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>
This commit is contained in:
Eric Sesterhenn
2006-03-26 18:31:56 +02:00
committed by Adrian Bunk
parent 5bcb28b139
commit f02e1fafb5

View File

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