summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2018-05-30 18:51:21 -0600
committerJens Axboe <axboe@kernel.dk>2018-05-30 18:51:21 -0600
commit04c4950d5b373ba712d928592e05e73510785bca (patch)
tree2cea4b14ad9dac5b8d43f1ccb7e970804fc183ae /block
parentdad08527525f9a8ac9c7f278864c65f94bc5e9b3 (diff)
downloadlinux-0-day-04c4950d5b373ba712d928592e05e73510785bca.tar.gz
linux-0-day-04c4950d5b373ba712d928592e05e73510785bca.tar.xz
block: fixup bioset_integrity_create() call
Missed converting the bioset_integrity_create() bounce bio set call. Fixes: 338aa96d5661 ("block: convert bounce, q->bio_split to bioset_init()/mempool_init()") Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block')
-rw-r--r--block/bounce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/bounce.c b/block/bounce.c
index 7a6c4d50b51c1..fd31347b78361 100644
--- a/block/bounce.c
+++ b/block/bounce.c
@@ -46,7 +46,7 @@ static __init int init_emergency_pool(void)
ret = bioset_init(&bounce_bio_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
BUG_ON(ret);
- if (bioset_integrity_create(bounce_bio_set, BIO_POOL_SIZE))
+ if (bioset_integrity_create(&bounce_bio_set, BIO_POOL_SIZE))
BUG_ON(1);
ret = bioset_init(&bounce_bio_split, BIO_POOL_SIZE, 0, 0);