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 void blk_recalc_rq_sectors(struct request
*rq
, int nsect
)
14 if (blk_fs_request(rq
) || blk_discard_rq(rq
)) {
15 rq
->hard_sector
+= nsect
;
16 rq
->hard_nr_sectors
-= nsect
;
19 * Move the I/O submission pointers ahead if required.
21 if ((rq
->nr_sectors
>= rq
->hard_nr_sectors
) &&
22 (rq
->sector
<= rq
->hard_sector
)) {
23 rq
->sector
= rq
->hard_sector
;
24 rq
->nr_sectors
= rq
->hard_nr_sectors
;
25 rq
->hard_cur_sectors
= bio_cur_sectors(rq
->bio
);
26 rq
->current_nr_sectors
= rq
->hard_cur_sectors
;
27 rq
->buffer
= bio_data(rq
->bio
);
31 * if total number of sectors is less than the first segment
32 * size, something has gone terribly wrong
34 if (rq
->nr_sectors
< rq
->current_nr_sectors
) {
35 printk(KERN_ERR
"blk: request botched\n");
36 rq
->nr_sectors
= rq
->current_nr_sectors
;
41 void blk_recalc_rq_segments(struct request
*rq
)
44 unsigned int phys_size
;
45 struct bio_vec
*bv
, *bvprv
= NULL
;
48 struct req_iterator iter
;
49 int high
, highprv
= 1;
50 struct request_queue
*q
= rq
->q
;
55 cluster
= test_bit(QUEUE_FLAG_CLUSTER
, &q
->queue_flags
);
57 phys_size
= nr_phys_segs
= 0;
58 rq_for_each_segment(bv
, rq
, iter
) {
60 * the trick here is making sure that a high page is never
61 * considered part of another segment, since that might
62 * change with the bounce page.
64 high
= page_to_pfn(bv
->bv_page
) > q
->bounce_pfn
;
68 if (seg_size
+ bv
->bv_len
> q
->max_segment_size
)
70 if (!BIOVEC_PHYS_MERGEABLE(bvprv
, bv
))
72 if (!BIOVEC_SEG_BOUNDARY(q
, bvprv
, bv
))
75 seg_size
+= bv
->bv_len
;
80 if (nr_phys_segs
== 1 && seg_size
> rq
->bio
->bi_seg_front_size
)
81 rq
->bio
->bi_seg_front_size
= seg_size
;
85 seg_size
= bv
->bv_len
;
89 if (nr_phys_segs
== 1 && seg_size
> rq
->bio
->bi_seg_front_size
)
90 rq
->bio
->bi_seg_front_size
= seg_size
;
91 if (seg_size
> rq
->biotail
->bi_seg_back_size
)
92 rq
->biotail
->bi_seg_back_size
= seg_size
;
94 rq
->nr_phys_segments
= nr_phys_segs
;
97 void blk_recount_segments(struct request_queue
*q
, struct bio
*bio
)
100 struct bio
*nxt
= bio
->bi_next
;
102 rq
.bio
= rq
.biotail
= bio
;
104 blk_recalc_rq_segments(&rq
);
106 bio
->bi_phys_segments
= rq
.nr_phys_segments
;
107 bio
->bi_flags
|= (1 << BIO_SEG_VALID
);
109 EXPORT_SYMBOL(blk_recount_segments
);
111 static int blk_phys_contig_segment(struct request_queue
*q
, struct bio
*bio
,
114 if (!test_bit(QUEUE_FLAG_CLUSTER
, &q
->queue_flags
))
117 if (bio
->bi_seg_back_size
+ nxt
->bi_seg_front_size
>
121 if (!bio_has_data(bio
))
124 if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio
), __BVEC_START(nxt
)))
128 * bio and nxt are contiguous in memory; check if the queue allows
129 * these two to be merged into one
131 if (BIO_SEG_BOUNDARY(q
, bio
, nxt
))
138 * map a request to scatterlist, return number of sg entries setup. Caller
139 * must make sure sg can hold rq->nr_phys_segments entries
141 int blk_rq_map_sg(struct request_queue
*q
, struct request
*rq
,
142 struct scatterlist
*sglist
)
144 struct bio_vec
*bvec
, *bvprv
;
145 struct req_iterator iter
;
146 struct scatterlist
*sg
;
150 cluster
= test_bit(QUEUE_FLAG_CLUSTER
, &q
->queue_flags
);
157 rq_for_each_segment(bvec
, rq
, iter
) {
158 int nbytes
= bvec
->bv_len
;
160 if (bvprv
&& cluster
) {
161 if (sg
->length
+ nbytes
> q
->max_segment_size
)
164 if (!BIOVEC_PHYS_MERGEABLE(bvprv
, bvec
))
166 if (!BIOVEC_SEG_BOUNDARY(q
, bvprv
, bvec
))
169 sg
->length
+= nbytes
;
176 * If the driver previously mapped a shorter
177 * list, we could see a termination bit
178 * prematurely unless it fully inits the sg
179 * table on each mapping. We KNOW that there
180 * must be more entries here or the driver
181 * would be buggy, so force clear the
182 * termination bit to avoid doing a full
183 * sg_init_table() in drivers for each command.
185 sg
->page_link
&= ~0x02;
189 sg_set_page(sg
, bvec
->bv_page
, nbytes
, bvec
->bv_offset
);
193 } /* segments in rq */
196 if (unlikely(rq
->cmd_flags
& REQ_COPY_USER
) &&
197 (rq
->data_len
& q
->dma_pad_mask
)) {
198 unsigned int pad_len
= (q
->dma_pad_mask
& ~rq
->data_len
) + 1;
200 sg
->length
+= pad_len
;
201 rq
->extra_len
+= pad_len
;
204 if (q
->dma_drain_size
&& q
->dma_drain_needed(rq
)) {
205 if (rq
->cmd_flags
& REQ_RW
)
206 memset(q
->dma_drain_buffer
, 0, q
->dma_drain_size
);
208 sg
->page_link
&= ~0x02;
210 sg_set_page(sg
, virt_to_page(q
->dma_drain_buffer
),
212 ((unsigned long)q
->dma_drain_buffer
) &
215 rq
->extra_len
+= q
->dma_drain_size
;
223 EXPORT_SYMBOL(blk_rq_map_sg
);
225 static inline int ll_new_hw_segment(struct request_queue
*q
,
229 int nr_phys_segs
= bio_phys_segments(q
, bio
);
231 if (req
->nr_phys_segments
+ nr_phys_segs
> q
->max_hw_segments
232 || req
->nr_phys_segments
+ nr_phys_segs
> q
->max_phys_segments
) {
233 req
->cmd_flags
|= REQ_NOMERGE
;
234 if (req
== q
->last_merge
)
235 q
->last_merge
= NULL
;
240 * This will form the start of a new hw segment. Bump both
243 req
->nr_phys_segments
+= nr_phys_segs
;
247 int ll_back_merge_fn(struct request_queue
*q
, struct request
*req
,
250 unsigned short max_sectors
;
252 if (unlikely(blk_pc_request(req
)))
253 max_sectors
= q
->max_hw_sectors
;
255 max_sectors
= q
->max_sectors
;
257 if (req
->nr_sectors
+ bio_sectors(bio
) > max_sectors
) {
258 req
->cmd_flags
|= REQ_NOMERGE
;
259 if (req
== q
->last_merge
)
260 q
->last_merge
= NULL
;
263 if (!bio_flagged(req
->biotail
, BIO_SEG_VALID
))
264 blk_recount_segments(q
, req
->biotail
);
265 if (!bio_flagged(bio
, BIO_SEG_VALID
))
266 blk_recount_segments(q
, bio
);
268 return ll_new_hw_segment(q
, req
, bio
);
271 int ll_front_merge_fn(struct request_queue
*q
, struct request
*req
,
274 unsigned short max_sectors
;
276 if (unlikely(blk_pc_request(req
)))
277 max_sectors
= q
->max_hw_sectors
;
279 max_sectors
= q
->max_sectors
;
282 if (req
->nr_sectors
+ bio_sectors(bio
) > max_sectors
) {
283 req
->cmd_flags
|= REQ_NOMERGE
;
284 if (req
== q
->last_merge
)
285 q
->last_merge
= NULL
;
288 if (!bio_flagged(bio
, BIO_SEG_VALID
))
289 blk_recount_segments(q
, bio
);
290 if (!bio_flagged(req
->bio
, BIO_SEG_VALID
))
291 blk_recount_segments(q
, req
->bio
);
293 return ll_new_hw_segment(q
, req
, bio
);
296 static int ll_merge_requests_fn(struct request_queue
*q
, struct request
*req
,
297 struct request
*next
)
299 int total_phys_segments
;
300 unsigned int seg_size
=
301 req
->biotail
->bi_seg_back_size
+ next
->bio
->bi_seg_front_size
;
304 * First check if the either of the requests are re-queued
305 * requests. Can't merge them if they are.
307 if (req
->special
|| next
->special
)
311 * Will it become too large?
313 if ((req
->nr_sectors
+ next
->nr_sectors
) > q
->max_sectors
)
316 total_phys_segments
= req
->nr_phys_segments
+ next
->nr_phys_segments
;
317 if (blk_phys_contig_segment(q
, req
->biotail
, next
->bio
)) {
318 if (req
->nr_phys_segments
== 1)
319 req
->bio
->bi_seg_front_size
= seg_size
;
320 if (next
->nr_phys_segments
== 1)
321 next
->biotail
->bi_seg_back_size
= seg_size
;
322 total_phys_segments
--;
325 if (total_phys_segments
> q
->max_phys_segments
)
328 if (total_phys_segments
> q
->max_hw_segments
)
332 req
->nr_phys_segments
= total_phys_segments
;
337 * Has to be called with the request spinlock acquired
339 static int attempt_merge(struct request_queue
*q
, struct request
*req
,
340 struct request
*next
)
342 if (!rq_mergeable(req
) || !rq_mergeable(next
))
348 if (req
->sector
+ req
->nr_sectors
!= next
->sector
)
351 if (rq_data_dir(req
) != rq_data_dir(next
)
352 || req
->rq_disk
!= next
->rq_disk
356 if (blk_integrity_rq(req
) != blk_integrity_rq(next
))
360 * If we are allowed to merge, then append bio list
361 * from next to rq and release next. merge_requests_fn
362 * will have updated segment counts, update sector
365 if (!ll_merge_requests_fn(q
, req
, next
))
369 * At this point we have either done a back merge
370 * or front merge. We need the smaller start_time of
371 * the merged requests to be the current request
372 * for accounting purposes.
374 if (time_after(req
->start_time
, next
->start_time
))
375 req
->start_time
= next
->start_time
;
377 req
->biotail
->bi_next
= next
->bio
;
378 req
->biotail
= next
->biotail
;
380 req
->nr_sectors
= req
->hard_nr_sectors
+= next
->hard_nr_sectors
;
382 elv_merge_requests(q
, req
, next
);
385 struct hd_struct
*part
;
388 cpu
= part_stat_lock();
389 part
= disk_map_sector_rcu(req
->rq_disk
, req
->sector
);
391 part_round_stats(cpu
, part
);
392 part_dec_in_flight(part
);
397 req
->ioprio
= ioprio_best(req
->ioprio
, next
->ioprio
);
398 if (blk_rq_cpu_valid(next
))
399 req
->cpu
= next
->cpu
;
401 __blk_put_request(q
, next
);
405 int attempt_back_merge(struct request_queue
*q
, struct request
*rq
)
407 struct request
*next
= elv_latter_request(q
, rq
);
410 return attempt_merge(q
, rq
, next
);
415 int attempt_front_merge(struct request_queue
*q
, struct request
*rq
)
417 struct request
*prev
= elv_former_request(q
, rq
);
420 return attempt_merge(q
, prev
, rq
);