diff options
author | Ming Lei <ming.lei@redhat.com> | 2017-07-14 11:14:43 +0300 |
---|---|---|
committer | Shaohua Li <shli@fb.com> | 2017-07-21 22:47:20 +0300 |
commit | fb0eb5df09307603b21845af1d143cc910154593 (patch) | |
tree | 7415f28242bf25b9351bde3ea2bd7fcadede3392 /drivers/md/raid1-10.c | |
parent | 022e510fcbda79183fd2cdc01abb01b4be80d03f (diff) | |
download | linux-fb0eb5df09307603b21845af1d143cc910154593.tar.xz |
md: raid1/raid10: initialize bvec table via bio_add_page()
We will support multipage bvec soon, so initialize bvec
table using the standardy way instead of writing the
talbe directly. Otherwise it won't work any more once
multipage bvec is enabled.
Acked-by: Guoqing Jiang <gqjiang@suse.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Shaohua Li <shli@fb.com>
Diffstat (limited to 'drivers/md/raid1-10.c')
-rw-r--r-- | drivers/md/raid1-10.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/md/raid1-10.c b/drivers/md/raid1-10.c new file mode 100644 index 000000000000..3adb5b9dc4b4 --- /dev/null +++ b/drivers/md/raid1-10.c @@ -0,0 +1,19 @@ +/* generally called after bio_reset() for reseting bvec */ +static void md_bio_reset_resync_pages(struct bio *bio, struct resync_pages *rp, + int size) +{ + int idx = 0; + + /* initialize bvec table again */ + do { + struct page *page = resync_fetch_page(rp, idx); + int len = min_t(int, size, PAGE_SIZE); + + /* + * won't fail because the vec table is big + * enough to hold all these pages + */ + bio_add_page(bio, page, len, 0); + size -= len; + } while (idx++ < RESYNC_PAGES && size > 0); +} |