Symbol: bio_split
block/bio.c
1844
EXPORT_SYMBOL(bio_split);
block/blk-merge.c
122
struct bio *split = bio_split(bio, split_sectors, GFP_NOIO, bs);
block/blk-merge.c
153
&bio->bi_bdev->bd_disk->bio_split);
block/genhd.c
1299
bioset_exit(&disk->bio_split);
block/genhd.c
1455
if (bioset_init(&disk->bio_split, BIO_POOL_SIZE, 0, 0))
block/genhd.c
1502
bioset_exit(&disk->bio_split);
drivers/md/bcache/bcache.h
274
struct bio_set bio_split;
drivers/md/bcache/bcache.h
544
struct bio_set bio_split;
drivers/md/bcache/request.c
1042
GFP_NOIO, &dc->disk.bio_split);
drivers/md/bcache/request.c
1054
&dc->disk.bio_split);
drivers/md/bcache/request.c
207
struct bio_set *split = &op->c->bio_split;
drivers/md/bcache/request.c
566
GFP_NOIO, &s->d->bio_split);
drivers/md/bcache/request.c
903
miss = bio_next_split(bio, sectors, GFP_NOIO, &s->d->bio_split);
drivers/md/bcache/request.c
924
&s->d->bio_split);
drivers/md/bcache/request.c
931
0, GFP_NOWAIT, &dc->disk.bio_split);
drivers/md/bcache/super.c
1698
bioset_exit(&c->bio_split);
drivers/md/bcache/super.c
1941
if (bioset_init(&c->bio_split, 4, offsetof(struct bbio, bio),
drivers/md/bcache/super.c
889
bioset_exit(&d->bio_split);
drivers/md/bcache/super.c
949
if (bioset_init(&d->bio_split, 4, offsetof(struct bbio, bio),
drivers/md/bcache/super.c
988
bioset_exit(&d->bio_split);
drivers/md/dm.c
1008
dm_io_rewind(io, &md->disk->bio_split);
drivers/md/raid1.c
1380
&conf->bio_split);
drivers/md/raid1.c
1605
&conf->bio_split);
drivers/md/raid1.c
3107
err = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid1.c
3179
bioset_exit(&conf->bio_split);
drivers/md/raid1.c
3294
bioset_exit(&conf->bio_split);
drivers/md/raid1.h
99
struct bio_set bio_split;
drivers/md/raid10.c
1209
&conf->bio_split);
drivers/md/raid10.c
1488
&conf->bio_split);
drivers/md/raid10.c
1666
split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split);
drivers/md/raid10.c
1683
split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split);
drivers/md/raid10.c
3829
bioset_exit(&conf->bio_split);
drivers/md/raid10.c
3876
err = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid10.h
93
struct bio_set bio_split;
drivers/md/raid5.c
5502
&conf->bio_split);
drivers/md/raid5.c
7385
bioset_exit(&conf->bio_split);
drivers/md/raid5.c
7569
ret = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid5.h
672
struct bio_set bio_split;
fs/btrfs/bio.c
86
bio = bio_split(&orig_bbio->bio, map_length >> SECTOR_SHIFT, GFP_NOFS,
fs/iomap/ioend.c
466
split = bio_split(bio, sector_offset, GFP_NOFS, &iomap_ioend_bioset);
fs/xfs/xfs_buf.c
1357
split = bio_split(bio, bp->b_maps[map].bm_len, GFP_NOFS,
fs/xfs/xfs_log.c
1620
split = bio_split(&iclog->ic_bio, log->l_logBBsize - bno,
fs/xfs/xfs_zone_gc.c
775
split = bio_split(&chunk->bio, split_sectors, GFP_NOFS, &data->bio_set);
include/linux/bio.h
317
extern struct bio *bio_split(struct bio *bio, int sectors,
include/linux/bio.h
340
return bio_split(bio, sectors, gfp, bs);
include/linux/blkdev.h
165
struct bio_set bio_split;