Commit f02e1faf authored by Eric Sesterhenn's avatar Eric Sesterhenn Committed by Adrian Bunk

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: default avatarEric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
parent 5bcb28b1
...@@ -183,8 +183,8 @@ EXPORT_SYMBOL(mempool_resize); ...@@ -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);
......
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