diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2018-05-20 18:25:57 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-05-30 15:33:32 -0600 |
commit | e292d7bc63c8f2adb3dfda27910e805f1b6557f9 (patch) | |
tree | eafed9270a7b8ee9cf0c3ae01eb5e1fb186cf823 /fs/xfs/xfs_aops.c | |
parent | 8ac9f7c1fd1d342e82ddf078425423b050652ba0 (diff) | |
download | linux-stable-e292d7bc63c8f2adb3dfda27910e805f1b6557f9.tar.gz linux-stable-e292d7bc63c8f2adb3dfda27910e805f1b6557f9.tar.bz2 linux-stable-e292d7bc63c8f2adb3dfda27910e805f1b6557f9.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_aops.c b/fs/xfs/xfs_aops.c index 0ab824f574ed..102463543db3 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); |