BUG_ON() Conversion in md/bitmap.c
authorEric Sesterhenn <snakebyte@gmx.de>
Fri, 24 Mar 2006 17:35:26 +0000 (18:35 +0100)
committerAdrian Bunk <bunk@stusta.de>
Fri, 24 Mar 2006 17:35:26 +0000 (18:35 +0100)
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>
drivers/md/bitmap.c

index eae4473eadde2a359a7e00e05b8bf4a5387140cc..979e8cae5d837a7bb444dc703ec3e0718cea9e6f 100644 (file)
@@ -1309,7 +1309,7 @@ int bitmap_startwrite(struct bitmap *bitmap, sector_t offset, unsigned long sect
                case 1:
                        *bmc = 2;
                }
-               if ((*bmc & COUNTER_MAX) == COUNTER_MAX) BUG();
+               BUG_ON((*bmc & COUNTER_MAX) == COUNTER_MAX);
                (*bmc)++;
 
                spin_unlock_irq(&bitmap->lock);