summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_aops.c
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2018-05-20 18:25:57 -0400
committerJens Axboe <axboe@kernel.dk>2018-05-30 15:33:32 -0600
commite292d7bc63c8f2adb3dfda27910e805f1b6557f9 (patch)
treeeafed9270a7b8ee9cf0c3ae01eb5e1fb186cf823 /fs/xfs/xfs_aops.c
parent8ac9f7c1fd1d342e82ddf078425423b050652ba0 (diff)
downloadlinux-0-day-e292d7bc63c8f2adb3dfda27910e805f1b6557f9.tar.gz
linux-0-day-e292d7bc63c8f2adb3dfda27910e805f1b6557f9.tar.xz
xfs: convert to bioset_init()/mempool_init()
Convert XFS to embedded bio sets. Acked-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/xfs/xfs_aops.c')
-rw-r--r--fs/xfs/xfs_aops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c
index 0ab824f574ed1..102463543db30 100644
--- a/fs/xfs/xfs_aops.c
+++ b/fs/xfs/xfs_aops.c
@@ -594,7 +594,7 @@ xfs_alloc_ioend(
struct xfs_ioend *ioend;
struct bio *bio;
- bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, xfs_ioend_bioset);
+ bio = bio_alloc_bioset(GFP_NOFS, BIO_MAX_PAGES, &xfs_ioend_bioset);
xfs_init_bio_from_bh(bio, bh);
ioend = container_of(bio, struct xfs_ioend, io_inline_bio);