mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-30 03:07:44 +08:00
md/raid6: eliminate BUG_ON with side effect
As pointed out by Neil it should be possible to build a driver with all BUG_ON statements deleted. It's bad form to have a BUG_ON with a side effect. Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
@@ -3214,8 +3214,10 @@ static bool handle_stripe6(struct stripe_head *sh)
|
||||
/* now count some things */
|
||||
if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
|
||||
if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
|
||||
if (test_bit(R5_Wantcompute, &dev->flags))
|
||||
BUG_ON(++s.compute > 2);
|
||||
if (test_bit(R5_Wantcompute, &dev->flags)) {
|
||||
s.compute++;
|
||||
BUG_ON(s.compute > 2);
|
||||
}
|
||||
|
||||
if (test_bit(R5_Wantfill, &dev->flags)) {
|
||||
s.to_fill++;
|
||||
|
||||
Reference in New Issue
Block a user