Lines Matching full:split

178  * bvec_split_segs - verify whether or not a bvec should be split in the middle
191 * big to fit in a single segment and hence that it has to be split in the
222 /* tell the caller to split the bvec if it is too big to fit */ in bvec_split_segs()
227 * blk_bio_segment_split - split a bio in two bios
229 * @bio: [in] bio to be split
243 * split bio has finished.
262 goto split; in blk_bio_segment_split()
271 goto split; in blk_bio_segment_split()
280 split: in blk_bio_segment_split()
286 * __blk_queue_split - split a bio and submit the second half
287 * @bio: [in, out] bio to be split
290 * Split a bio into two bios, chain the two bios, submit the second half and
292 * big it will be split by a recursive call to this function. Since this
296 * split bio has finished.
301 struct bio *split = NULL; in __blk_queue_split() local
306 split = blk_bio_discard_split(q, *bio, &q->bio_split, nr_segs); in __blk_queue_split()
309 split = blk_bio_write_zeroes_split(q, *bio, &q->bio_split, in __blk_queue_split()
313 split = blk_bio_write_same_split(q, *bio, &q->bio_split, in __blk_queue_split()
332 split = blk_bio_segment_split(q, *bio, &q->bio_split, nr_segs); in __blk_queue_split()
336 if (split) { in __blk_queue_split()
338 split->bi_opf |= REQ_NOMERGE; in __blk_queue_split()
340 bio_chain(split, *bio); in __blk_queue_split()
341 trace_block_split(q, split, (*bio)->bi_iter.bi_sector); in __blk_queue_split()
343 *bio = split; in __blk_queue_split()
348 * blk_queue_split - split a bio and submit the second half
349 * @bio: [in, out] bio to be split
351 * Split a bio into two bios, chains the two bios, submit the second half and
355 * after processing of the split bio has finished.