mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 05:30:52 +07:00
block: fixup bioset_integrity_create() call
Missed converting the bioset_integrity_create() bounce bio set
call.
Fixes: 338aa96d56
("block: convert bounce, q->bio_split to bioset_init()/mempool_init()")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
dad0852752
commit
04c4950d5b
@ -46,7 +46,7 @@ static __init int init_emergency_pool(void)
|
|||||||
|
|
||||||
ret = bioset_init(&bounce_bio_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
|
ret = bioset_init(&bounce_bio_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
|
||||||
BUG_ON(ret);
|
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);
|
BUG_ON(1);
|
||||||
|
|
||||||
ret = bioset_init(&bounce_bio_split, BIO_POOL_SIZE, 0, 0);
|
ret = bioset_init(&bounce_bio_split, BIO_POOL_SIZE, 0, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user