]> git.baikalelectronics.ru Git - kernel.git/commit
md/raid1: fix_read_error should act on all non-faulty devices.
authorNeilBrown <neilb@suse.de>
Thu, 18 Sep 2014 01:09:04 +0000 (11:09 +1000)
committerNeilBrown <neilb@suse.de>
Mon, 22 Sep 2014 01:26:01 +0000 (11:26 +1000)
commit268cbb7c8546824b06b53b1cb48c8035d7b7a86c
treed9d8fcff94a5cbcfdbaba73a2a47a3ffce6ffd6d
parentaf17c4b332602f0626c4a312687b18b4c7600b0d
md/raid1: fix_read_error should act on all non-faulty devices.

If a devices is being recovered it is not InSync and is not Faulty.

If a read error is experienced on that device, fix_read_error()
will be called, but it ignores non-InSync devices.  So it will
neither fix the error nor fail the device.

It is incorrect that fix_read_error() ignores non-InSync devices.
It should only ignore Faulty devices.  So fix it.

This became a bug when we allowed reading from a device that was being
recovered.  It is suitable for any subsequent -stable kernel.

Fixes: bb949a146de84aa674e80995a92ccba4069261f8
Cc: stable@vger.kernel.org (v3.5+)
Reported-by: Alexander Lyakas <alex.bolshoy@gmail.com>
Tested-by: Alexander Lyakas <alex.bolshoy@gmail.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid1.c