2 * Functions related to segment and merge handling
4 #include <linux/kernel.h>
5 #include <linux/module.h>
7 #include <linux/blkdev.h>
8 #include <linux/scatterlist.h>
12 static unsigned int __blk_recalc_rq_segments(struct request_queue *q,
15 unsigned int phys_size;
16 struct bio_vec *bv, *bvprv = NULL;
17 int cluster, i, high, highprv = 1;
18 unsigned int seg_size, nr_phys_segs;
19 struct bio *fbio, *bbio;
25 cluster = test_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags);
27 phys_size = nr_phys_segs = 0;
29 bio_for_each_segment(bv, bio, i) {
31 * the trick here is making sure that a high page is
32 * never considered part of another segment, since that
33 * might change with the bounce page.
35 high = page_to_pfn(bv->bv_page) > queue_bounce_pfn(q);
39 if (seg_size + bv->bv_len
40 > queue_max_segment_size(q))
42 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
44 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
47 seg_size += bv->bv_len;
52 if (nr_phys_segs == 1 && seg_size >
53 fbio->bi_seg_front_size)
54 fbio->bi_seg_front_size = seg_size;
58 seg_size = bv->bv_len;
64 if (nr_phys_segs == 1 && seg_size > fbio->bi_seg_front_size)
65 fbio->bi_seg_front_size = seg_size;
66 if (seg_size > bbio->bi_seg_back_size)
67 bbio->bi_seg_back_size = seg_size;
72 void blk_recalc_rq_segments(struct request *rq)
74 rq->nr_phys_segments = __blk_recalc_rq_segments(rq->q, rq->bio);
77 void blk_recount_segments(struct request_queue *q, struct bio *bio)
79 struct bio *nxt = bio->bi_next;
82 bio->bi_phys_segments = __blk_recalc_rq_segments(q, bio);
84 bio->bi_flags |= (1 << BIO_SEG_VALID);
86 EXPORT_SYMBOL(blk_recount_segments);
88 static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio,
91 if (!test_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags))
94 if (bio->bi_seg_back_size + nxt->bi_seg_front_size >
95 queue_max_segment_size(q))
98 if (!bio_has_data(bio))
101 if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
105 * bio and nxt are contiguous in memory; check if the queue allows
106 * these two to be merged into one
108 if (BIO_SEG_BOUNDARY(q, bio, nxt))
115 * map a request to scatterlist, return number of sg entries setup. Caller
116 * must make sure sg can hold rq->nr_phys_segments entries
118 int blk_rq_map_sg(struct request_queue *q, struct request *rq,
119 struct scatterlist *sglist)
121 struct bio_vec *bvec, *bvprv;
122 struct req_iterator iter;
123 struct scatterlist *sg;
127 cluster = test_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags);
134 rq_for_each_segment(bvec, rq, iter) {
135 int nbytes = bvec->bv_len;
137 if (bvprv && cluster) {
138 if (sg->length + nbytes > queue_max_segment_size(q))
141 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
143 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
146 sg->length += nbytes;
153 * If the driver previously mapped a shorter
154 * list, we could see a termination bit
155 * prematurely unless it fully inits the sg
156 * table on each mapping. We KNOW that there
157 * must be more entries here or the driver
158 * would be buggy, so force clear the
159 * termination bit to avoid doing a full
160 * sg_init_table() in drivers for each command.
162 sg->page_link &= ~0x02;
166 sg_set_page(sg, bvec->bv_page, nbytes, bvec->bv_offset);
170 } /* segments in rq */
173 if (unlikely(rq->cmd_flags & REQ_COPY_USER) &&
174 (blk_rq_bytes(rq) & q->dma_pad_mask)) {
175 unsigned int pad_len =
176 (q->dma_pad_mask & ~blk_rq_bytes(rq)) + 1;
178 sg->length += pad_len;
179 rq->extra_len += pad_len;
182 if (q->dma_drain_size && q->dma_drain_needed(rq)) {
183 if (rq->cmd_flags & REQ_RW)
184 memset(q->dma_drain_buffer, 0, q->dma_drain_size);
186 sg->page_link &= ~0x02;
188 sg_set_page(sg, virt_to_page(q->dma_drain_buffer),
190 ((unsigned long)q->dma_drain_buffer) &
193 rq->extra_len += q->dma_drain_size;
201 EXPORT_SYMBOL(blk_rq_map_sg);
203 static inline int ll_new_hw_segment(struct request_queue *q,
207 int nr_phys_segs = bio_phys_segments(q, bio);
209 if (req->nr_phys_segments + nr_phys_segs > queue_max_hw_segments(q) ||
210 req->nr_phys_segments + nr_phys_segs > queue_max_phys_segments(q)) {
211 req->cmd_flags |= REQ_NOMERGE;
212 if (req == q->last_merge)
213 q->last_merge = NULL;
218 * This will form the start of a new hw segment. Bump both
221 req->nr_phys_segments += nr_phys_segs;
225 int ll_back_merge_fn(struct request_queue *q, struct request *req,
228 unsigned short max_sectors;
230 if (unlikely(blk_pc_request(req)))
231 max_sectors = queue_max_hw_sectors(q);
233 max_sectors = queue_max_sectors(q);
235 if (blk_rq_sectors(req) + bio_sectors(bio) > max_sectors) {
236 req->cmd_flags |= REQ_NOMERGE;
237 if (req == q->last_merge)
238 q->last_merge = NULL;
241 if (!bio_flagged(req->biotail, BIO_SEG_VALID))
242 blk_recount_segments(q, req->biotail);
243 if (!bio_flagged(bio, BIO_SEG_VALID))
244 blk_recount_segments(q, bio);
246 return ll_new_hw_segment(q, req, bio);
249 int ll_front_merge_fn(struct request_queue *q, struct request *req,
252 unsigned short max_sectors;
254 if (unlikely(blk_pc_request(req)))
255 max_sectors = queue_max_hw_sectors(q);
257 max_sectors = queue_max_sectors(q);
260 if (blk_rq_sectors(req) + bio_sectors(bio) > max_sectors) {
261 req->cmd_flags |= REQ_NOMERGE;
262 if (req == q->last_merge)
263 q->last_merge = NULL;
266 if (!bio_flagged(bio, BIO_SEG_VALID))
267 blk_recount_segments(q, bio);
268 if (!bio_flagged(req->bio, BIO_SEG_VALID))
269 blk_recount_segments(q, req->bio);
271 return ll_new_hw_segment(q, req, bio);
274 static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
275 struct request *next)
277 int total_phys_segments;
278 unsigned int seg_size =
279 req->biotail->bi_seg_back_size + next->bio->bi_seg_front_size;
282 * First check if the either of the requests are re-queued
283 * requests. Can't merge them if they are.
285 if (req->special || next->special)
289 * Will it become too large?
291 if ((blk_rq_sectors(req) + blk_rq_sectors(next)) > queue_max_sectors(q))
294 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
295 if (blk_phys_contig_segment(q, req->biotail, next->bio)) {
296 if (req->nr_phys_segments == 1)
297 req->bio->bi_seg_front_size = seg_size;
298 if (next->nr_phys_segments == 1)
299 next->biotail->bi_seg_back_size = seg_size;
300 total_phys_segments--;
303 if (total_phys_segments > queue_max_phys_segments(q))
306 if (total_phys_segments > queue_max_hw_segments(q))
310 req->nr_phys_segments = total_phys_segments;
315 * blk_rq_set_mixed_merge - mark a request as mixed merge
316 * @rq: request to mark as mixed merge
319 * @rq is about to be mixed merged. Make sure the attributes
320 * which can be mixed are set in each bio and mark @rq as mixed
323 void blk_rq_set_mixed_merge(struct request *rq)
325 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
328 if (rq->cmd_flags & REQ_MIXED_MERGE)
332 * @rq will no longer represent mixable attributes for all the
333 * contained bios. It will just track those of the first one.
334 * Distributes the attributs to each bio.
336 for (bio = rq->bio; bio; bio = bio->bi_next) {
337 WARN_ON_ONCE((bio->bi_rw & REQ_FAILFAST_MASK) &&
338 (bio->bi_rw & REQ_FAILFAST_MASK) != ff);
341 rq->cmd_flags |= REQ_MIXED_MERGE;
344 static void blk_account_io_merge(struct request *req)
346 if (blk_do_io_stat(req)) {
347 struct hd_struct *part;
350 cpu = part_stat_lock();
351 part = disk_map_sector_rcu(req->rq_disk, blk_rq_pos(req));
353 part_round_stats(cpu, part);
354 part_dec_in_flight(part, rq_data_dir(req));
361 * Has to be called with the request spinlock acquired
363 static int attempt_merge(struct request_queue *q, struct request *req,
364 struct request *next)
366 if (!rq_mergeable(req) || !rq_mergeable(next))
372 if (blk_rq_pos(req) + blk_rq_sectors(req) != blk_rq_pos(next))
375 if (rq_data_dir(req) != rq_data_dir(next)
376 || req->rq_disk != next->rq_disk
380 if (blk_integrity_rq(req) != blk_integrity_rq(next))
384 * If we are allowed to merge, then append bio list
385 * from next to rq and release next. merge_requests_fn
386 * will have updated segment counts, update sector
389 if (!ll_merge_requests_fn(q, req, next))
393 * If failfast settings disagree or any of the two is already
394 * a mixed merge, mark both as mixed before proceeding. This
395 * makes sure that all involved bios have mixable attributes
398 if ((req->cmd_flags | next->cmd_flags) & REQ_MIXED_MERGE ||
399 (req->cmd_flags & REQ_FAILFAST_MASK) !=
400 (next->cmd_flags & REQ_FAILFAST_MASK)) {
401 blk_rq_set_mixed_merge(req);
402 blk_rq_set_mixed_merge(next);
406 * At this point we have either done a back merge
407 * or front merge. We need the smaller start_time of
408 * the merged requests to be the current request
409 * for accounting purposes.
411 if (time_after(req->start_time, next->start_time))
412 req->start_time = next->start_time;
414 req->biotail->bi_next = next->bio;
415 req->biotail = next->biotail;
417 req->__data_len += blk_rq_bytes(next);
419 elv_merge_requests(q, req, next);
422 * 'next' is going away, so update stats accordingly
424 blk_account_io_merge(next);
426 req->ioprio = ioprio_best(req->ioprio, next->ioprio);
427 if (blk_rq_cpu_valid(next))
428 req->cpu = next->cpu;
430 /* owner-ship of bio passed from next to req */
432 __blk_put_request(q, next);
436 int attempt_back_merge(struct request_queue *q, struct request *rq)
438 struct request *next = elv_latter_request(q, rq);
441 return attempt_merge(q, rq, next);
446 int attempt_front_merge(struct request_queue *q, struct request *rq)
448 struct request *prev = elv_former_request(q, rq);
451 return attempt_merge(q, prev, rq);