diff options
author | Ming Lei <ming.lei@redhat.com> | 2019-02-15 19:13:20 +0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-02-15 08:40:12 -0700 |
commit | 07173c3ec276cbb18dc0e0687d37d310e98a1480 (patch) | |
tree | 7c3d6970d7e4239dd717a33894ccd7769de80913 /fs/xfs/xfs_aops.c | |
parent | 6dc4f100c175dd0511ae8674786e7c9006cdfbfa (diff) | |
download | linux-07173c3ec276cbb18dc0e0687d37d310e98a1480.tar.gz linux-07173c3ec276cbb18dc0e0687d37d310e98a1480.tar.bz2 linux-07173c3ec276cbb18dc0e0687d37d310e98a1480.zip |
block: enable multipage bvecs
This patch pulls the trigger for multi-page bvecs.
Reviewed-by: Omar Sandoval <osandov@fb.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/xfs/xfs_aops.c')
-rw-r--r-- | fs/xfs/xfs_aops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 1f1829e506e8..b9fd44168f61 100644 --- a/fs/xfs/xfs_aops.c +++ b/fs/xfs/xfs_aops.c @@ -616,12 +616,12 @@ xfs_add_to_ioend( bdev, sector); } - if (!__bio_try_merge_page(wpc->ioend->io_bio, page, len, poff)) { + if (!__bio_try_merge_page(wpc->ioend->io_bio, page, len, poff, true)) { if (iop) atomic_inc(&iop->write_count); if (bio_full(wpc->ioend->io_bio)) xfs_chain_bio(wpc->ioend, wbc, bdev, sector); - __bio_add_page(wpc->ioend->io_bio, page, len, poff); + bio_add_page(wpc->ioend->io_bio, page, len, poff); } wpc->ioend->io_size += len; |