BUG_ON cleanup for drivers/md/
This changes two if() BUG(); usages to BUG_ON(); so people can disable it safely. Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:

committed by
Adrian Bunk

parent
70d63ccc71
commit
52e5f9d1cf
@@ -1105,7 +1105,7 @@ static void compute_parity6(struct stripe_head *sh, int method)
|
||||
if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
|
||||
wake_up(&conf->wait_for_overlap);
|
||||
|
||||
if (sh->dev[i].written) BUG();
|
||||
BUG_ON(sh->dev[i].written);
|
||||
sh->dev[i].written = chosen;
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user