]> git.baikalelectronics.ru Git - kernel.git/commit
md/raid1: fix bio handling problems in process_checks()
authorNeilBrown <neilb@suse.de>
Wed, 17 Jul 2013 05:19:29 +0000 (15:19 +1000)
committerNeilBrown <neilb@suse.de>
Thu, 18 Jul 2013 04:18:04 +0000 (14:18 +1000)
commitaaacc5eff3d4ad08ba8f12549307ae20f8926efa
tree715adc122718ac9ea2c49b9953dee29d458d327a
parent37458b2d57f0b40503d229f8e51c65c96388e25b
md/raid1: fix bio handling problems in process_checks()

Recent change to use bio_copy_data() in raid1 when repairing
an array is faulty.

The underlying may have changed the bio in various ways using
bio_advance and these need to be undone not just for the 'sbio' which
is being copied to, but also the 'pbio' (primary) which is being
copied from.

So perform the reset on all bios that were read from and do it early.

This also ensure that the sbio->bi_io_vec[j].bv_len passed to
memcmp is correct.

This fixes a crash during a 'check' of a RAID1 array.  The crash was
introduced in 3.10 so this is suitable for 3.10-stable.

Cc: stable@vger.kernel.org (3.10)
Reported-by: Joe Lawrence <joe.lawrence@stratus.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid1.c