Symbol: bio_split
block/bio.c
1871
EXPORT_SYMBOL(bio_split);
block/blk-merge.c
122
struct bio *split = bio_split(bio, split_sectors, GFP_NOIO, bs);
block/blk-merge.c
151
&bio->bi_bdev->bd_disk->bio_split);
block/genhd.c
1295
bioset_exit(&disk->bio_split);
block/genhd.c
1451
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
1706
bioset_exit(&c->bio_split);
drivers/md/bcache/super.c
1949
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
1017
dm_io_rewind(io, &md->disk->bio_split);
drivers/md/raid1.c
1421
&conf->bio_split);
drivers/md/raid1.c
1641
&conf->bio_split);
drivers/md/raid1.c
3145
err = bioset_init(&conf->bio_split, BIO_POOL_SIZE, 0, 0);
drivers/md/raid1.c
3217
bioset_exit(&conf->bio_split);
drivers/md/raid1.c
3333
bioset_exit(&conf->bio_split);
drivers/md/raid1.h
99
struct bio_set bio_split;
drivers/md/raid10.c
1217
&conf->bio_split);
drivers/md/raid10.c
1496
&conf->bio_split);
drivers/md/raid10.c
1681
split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split);
drivers/md/raid10.c
1700
split = bio_split(bio, split_size, GFP_NOIO, &conf->bio_split);
drivers/md/raid10.c
3852
bioset_exit(&conf->bio_split);
drivers/md/raid10.c
3899
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
5524
&conf->bio_split);
drivers/md/raid5.c
7443
bioset_exit(&conf->bio_split);
drivers/md/raid5.c
7627
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
87
bio = bio_split(&orig_bbio->bio, map_length >> SECTOR_SHIFT, GFP_NOFS,
fs/iomap/ioend.c
491
split = bio_split(bio, sector_offset, GFP_NOFS, &iomap_ioend_bioset);
fs/xfs/xfs_buf.c
1292
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
813
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
167
struct bio_set bio_split;