diff options
author | NeilBrown <neilb@suse.de> | 2007-01-25 15:35:25 +1100 |
---|---|---|
committer | Chris Wright <chrisw@sous-sol.org> | 2007-02-05 08:31:43 -0800 |
commit | d53c44cb93ba219bc26fa2f7ddd98bdd4d219c9c (patch) | |
tree | 880aefd1fccba92da07f0d71bbfc667ae4c499ba | |
parent | 58d81d98ecc8ead88c64b7b1d5a2c05ba0b782f8 (diff) | |
download | kernel-adaptation-pc-d53c44cb93ba219bc26fa2f7ddd98bdd4d219c9c.tar.gz kernel-adaptation-pc-d53c44cb93ba219bc26fa2f7ddd98bdd4d219c9c.tar.bz2 kernel-adaptation-pc-d53c44cb93ba219bc26fa2f7ddd98bdd4d219c9c.zip |
[PATCH] md: make 'repair' actually work for raid1.
When 'repair' finds a block that is different one the various
parts of the mirror. it is meant to write a chosen good version
to the others. However it currently writes out the original data
to each. The memcpy to make all the data the same is missing.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
-rw-r--r-- | drivers/md/raid1.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 99d453fd716..77b19b4d0a1 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c @@ -1266,6 +1266,11 @@ static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio) sbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset; sbio->bi_bdev = conf->mirrors[i].rdev->bdev; + for (j = 0; j < vcnt ; j++) + memcpy(page_address(sbio->bi_io_vec[j].bv_page), + page_address(pbio->bi_io_vec[j].bv_page), + PAGE_SIZE); + } } } |