diff options
author | Ingo Molnar <mingo@kernel.org> | 2021-03-19 12:10:49 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2021-03-19 12:10:49 +0100 |
commit | 01438749e36bfe53ea25c91568019be775a9782e (patch) | |
tree | f91f5abae2004863afda683589d034dcd2000ab8 /drivers/md/raid5-cache.c | |
parent | locking/rwsem: Fix comment typo (diff) | |
parent | locking/ww_mutex: Fix acquire/release imbalance in ww_acquire_init()/ww_acqui... (diff) | |
download | linux-01438749e36bfe53ea25c91568019be775a9782e.tar.xz linux-01438749e36bfe53ea25c91568019be775a9782e.zip |
Merge branch 'locking/urgent' into locking/core, to pick up dependent commits
We are applying further, lower-prio fixes on top of two ww_mutex fixes in locking/urgent.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/md/raid5-cache.c')
-rw-r--r-- | drivers/md/raid5-cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/raid5-cache.c b/drivers/md/raid5-cache.c index 4337ae0e6af2..0b5dcaabbc15 100644 --- a/drivers/md/raid5-cache.c +++ b/drivers/md/raid5-cache.c @@ -735,7 +735,7 @@ static void r5l_submit_current_io(struct r5l_log *log) static struct bio *r5l_bio_alloc(struct r5l_log *log) { - struct bio *bio = bio_alloc_bioset(GFP_NOIO, BIO_MAX_PAGES, &log->bs); + struct bio *bio = bio_alloc_bioset(GFP_NOIO, BIO_MAX_VECS, &log->bs); bio_set_op_attrs(bio, REQ_OP_WRITE, 0); bio_set_dev(bio, log->rdev->bdev); @@ -1634,7 +1634,7 @@ static int r5l_recovery_allocate_ra_pool(struct r5l_log *log, { struct page *page; - ctx->ra_bio = bio_alloc_bioset(GFP_KERNEL, BIO_MAX_PAGES, &log->bs); + ctx->ra_bio = bio_alloc_bioset(GFP_KERNEL, BIO_MAX_VECS, &log->bs); if (!ctx->ra_bio) return -ENOMEM; |