]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md/raid5: make sure to_read and to_write never go negative.
authorNeilBrown <neilb@suse.de>
Tue, 25 Sep 2012 08:32:08 +0000 (18:32 +1000)
committerNeilBrown <neilb@suse.de>
Tue, 25 Sep 2012 08:32:08 +0000 (18:32 +1000)
commit0179d361662367ab0f80b5822b162a1c0ba9b57d
tree1981b9ae064adaf9087cec1095f4a0ed41a64c70
parenteadb9fb1d4da32ed1b143a6fc1997c4c42ea0422
md/raid5: make sure to_read and to_write never go negative.

to_read and to_write are part of the result of analysing
a stripe before handling it.
Their use is to avoid some loops and tests if the values are
known to be zero.  Thus it is not a problem if they are a
little bit larger than they should be.

So decrementing them in handle_failed_stripe serves little value, and
due to races it could cause some loops to be skipped incorrectly.

So remove those decrements.

Reported-by: "Jianpeng Ma" <majianpeng@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid5.c