Symbol: bioset_init
block/bio.c
2002
EXPORT_SYMBOL(bioset_init);
block/bio.c
2021
if (bioset_init(&fs_bio_set, BIO_POOL_SIZE, 0,
block/blk-crypto-fallback.c
542
err = bioset_init(&enc_bio_set, 64, 0, BIOSET_NEED_BVECS);
block/fops.c
949
return bioset_init(&blkdev_dio_pool, 4,
block/genhd.c
1455
if (bioset_init(&disk->bio_split, BIO_POOL_SIZE, 0, 0))
drivers/block/drbd/drbd_main.c
2104
ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
drivers/block/drbd/drbd_main.c
2108
ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
drivers/md/bcache/super.c
1949
if (bioset_init(&c->bio_split, 4, offsetof(struct bbio, bio),
drivers/md/bcache/super.c
949
if (bioset_init(&d->bio_split, 4, offsetof(struct bbio, bio),
drivers/md/bcache/super.c
953
if (bioset_init(&d->bio_detached, 4,
drivers/md/dm-cache-target.c
2442
r = bioset_init(&cache->bs, BIO_POOL_SIZE, 0, 0);
drivers/md/dm-crypt.c
3280
ret = bioset_init(&cc->bs, MIN_IOS, 0, BIOSET_NEED_BVECS);
drivers/md/dm-integrity.c
4984
r = bioset_init(&ic->recheck_bios, RECHECK_POOL_SIZE, 0, BIOSET_NEED_BVECS);
drivers/md/dm-integrity.c
4989
r = bioset_init(&ic->recalc_bios, 1, 0, BIOSET_NEED_BVECS);
drivers/md/dm-io.c
63
ret = bioset_init(&client->bios, min_ios, 0, BIOSET_NEED_BVECS);
drivers/md/dm-table.c
1075
if (bioset_init(&pools->io_bs, pool_size, io_front_pad, bioset_flags))
drivers/md/dm-table.c
1078
if (bioset_init(&pools->bs, pool_size, front_pad, 0))
drivers/md/dm-writecache.c
2319
r = bioset_init(&wc->bio_set, BIO_POOL_SIZE,
drivers/md/dm-zoned-target.c
894
ret = bioset_init(&dmz->bio_set, DMZ_MIN_BIOS, 0, 0);
drivers/md/md.c
764
err = bioset_init(&mddev->bio_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
drivers/md/md.c
768
err = bioset_init(&mddev->sync_set, BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
drivers/md/md.c
772
err = bioset_init(&mddev->io_clone_set, BIO_POOL_SIZE,
drivers/md/raid1.c
3145
err = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid10.c
3899
err = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid5-cache.c
3116
ret = bioset_init(&log->bs, R5L_POOL_SIZE, 0, BIOSET_NEED_BVECS);
drivers/md/raid5-ppl.c
1372
ret = bioset_init(&ppl_conf->bs, conf->raid_disks, 0, BIOSET_NEED_BVECS);
drivers/md/raid5-ppl.c
1376
ret = bioset_init(&ppl_conf->flush_bs, conf->raid_disks, 0, 0);
drivers/md/raid5.c
7627
ret = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/target/target_core_iblock.c
107
ret = bioset_init(&ib_dev->ibd_bio_set, IBLOCK_BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS);
fs/btrfs/bio.c
1045
if (bioset_init(&btrfs_bioset, BIO_POOL_SIZE,
fs/btrfs/bio.c
1049
if (bioset_init(&btrfs_clone_bioset, BIO_POOL_SIZE,
fs/btrfs/bio.c
1052
if (bioset_init(&btrfs_repair_bioset, BIO_POOL_SIZE,
fs/btrfs/compression.c
1141
if (bioset_init(&btrfs_compressed_bioset, BIO_POOL_SIZE,
fs/btrfs/direct-io.c
1145
if (bioset_init(&btrfs_dio_bioset, BIO_POOL_SIZE,
fs/f2fs/data.c
53
return bioset_init(&f2fs_bioset, F2FS_BIO_POOL_SIZE,
fs/iomap/ioend.c
519
error = bioset_init(&iomap_ioend_bioset, nr_mempool_entries,
fs/iomap/ioend.c
524
error = bioset_init(&iomap_ioend_split_bioset, nr_mempool_entries,
fs/xfs/xfs_zone_gc.c
221
if (bioset_init(&data->bio_set, 16, offsetof(struct xfs_gc_bio, bio),
include/linux/bio.h
348
extern int bioset_init(struct bio_set *, unsigned int, unsigned int, int flags);