]> git.karo-electronics.de Git - karo-tx-linux.git/commit
md/raid10: fix two problems with RAID10 resync.
authorNeilBrown <neilb@suse.de>
Tue, 16 Jul 2013 06:50:47 +0000 (16:50 +1000)
committerNeilBrown <neilb@suse.de>
Wed, 17 Jul 2013 05:01:00 +0000 (15:01 +1000)
commit6d76893171569a0da926192b08c19cce74c4e9f6
tree0ec3f8933f4a0f97f0c47e68831daed5f41a2bcf
parent1056164ebe36ebd1f5c3df9a3e31a7be64165a6d
md/raid10: fix two problems with RAID10 resync.

1/ When an different between blocks is found, data is copied from
   one bio to the other.  However bv_len is used as the length to
   copy and this could be zero.  So use r10_bio->sectors to calculate
   length instead.
   Using bv_len was probably always a bit dubious, but the introduction
   of bio_advance made it much more likely to be a problem.

2/ When preparing some blocks for sync, we don't set BIO_UPTODATE
   except on bios that we schedule for a read.  This ensures that
   missing/failed devices don't confuse the loop at the top of
   sync_request write.
   Commit 8be185f2c9d54d6 "raid10: Use bio_reset()"
   removed a loop which set BIO_UPTDATE on all appropriate bios.
   So we need to re-add that flag.

These bugs were introduced in 3.10, so this patch is suitable for
3.10-stable, and can remove a potential for data corruption.

Cc: stable@vger.kernel.org (3.10)
Reported-by: Brassow Jonathan <jbrassow@redhat.com>
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/raid10.c