]>
Commit | Line | Data |
---|---|---|
d6d48196 JA |
1 | /* |
2 | * Functions related to segment and merge handling | |
3 | */ | |
4 | #include <linux/kernel.h> | |
5 | #include <linux/module.h> | |
6 | #include <linux/bio.h> | |
7 | #include <linux/blkdev.h> | |
8 | #include <linux/scatterlist.h> | |
9 | ||
10 | #include "blk.h" | |
11 | ||
54efd50b KO |
12 | static struct bio *blk_bio_discard_split(struct request_queue *q, |
13 | struct bio *bio, | |
bdced438 ML |
14 | struct bio_set *bs, |
15 | unsigned *nsegs) | |
54efd50b KO |
16 | { |
17 | unsigned int max_discard_sectors, granularity; | |
18 | int alignment; | |
19 | sector_t tmp; | |
20 | unsigned split_sectors; | |
21 | ||
bdced438 ML |
22 | *nsegs = 1; |
23 | ||
54efd50b KO |
24 | /* Zero-sector (unknown) and one-sector granularities are the same. */ |
25 | granularity = max(q->limits.discard_granularity >> 9, 1U); | |
26 | ||
27 | max_discard_sectors = min(q->limits.max_discard_sectors, UINT_MAX >> 9); | |
28 | max_discard_sectors -= max_discard_sectors % granularity; | |
29 | ||
30 | if (unlikely(!max_discard_sectors)) { | |
31 | /* XXX: warn */ | |
32 | return NULL; | |
33 | } | |
34 | ||
35 | if (bio_sectors(bio) <= max_discard_sectors) | |
36 | return NULL; | |
37 | ||
38 | split_sectors = max_discard_sectors; | |
39 | ||
40 | /* | |
41 | * If the next starting sector would be misaligned, stop the discard at | |
42 | * the previous aligned sector. | |
43 | */ | |
44 | alignment = (q->limits.discard_alignment >> 9) % granularity; | |
45 | ||
46 | tmp = bio->bi_iter.bi_sector + split_sectors - alignment; | |
47 | tmp = sector_div(tmp, granularity); | |
48 | ||
49 | if (split_sectors > tmp) | |
50 | split_sectors -= tmp; | |
51 | ||
52 | return bio_split(bio, split_sectors, GFP_NOIO, bs); | |
53 | } | |
54 | ||
55 | static struct bio *blk_bio_write_same_split(struct request_queue *q, | |
56 | struct bio *bio, | |
bdced438 ML |
57 | struct bio_set *bs, |
58 | unsigned *nsegs) | |
54efd50b | 59 | { |
bdced438 ML |
60 | *nsegs = 1; |
61 | ||
54efd50b KO |
62 | if (!q->limits.max_write_same_sectors) |
63 | return NULL; | |
64 | ||
65 | if (bio_sectors(bio) <= q->limits.max_write_same_sectors) | |
66 | return NULL; | |
67 | ||
68 | return bio_split(bio, q->limits.max_write_same_sectors, GFP_NOIO, bs); | |
69 | } | |
70 | ||
71 | static struct bio *blk_bio_segment_split(struct request_queue *q, | |
72 | struct bio *bio, | |
bdced438 ML |
73 | struct bio_set *bs, |
74 | unsigned *segs) | |
54efd50b | 75 | { |
5014c311 | 76 | struct bio_vec bv, bvprv, *bvprvp = NULL; |
54efd50b | 77 | struct bvec_iter iter; |
8ae12666 | 78 | unsigned seg_size = 0, nsegs = 0, sectors = 0; |
54efd50b | 79 | |
54efd50b | 80 | bio_for_each_segment(bv, bio, iter) { |
52cc6eea | 81 | if (sectors + (bv.bv_len >> 9) > queue_max_sectors(q)) |
54efd50b KO |
82 | goto split; |
83 | ||
84 | /* | |
85 | * If the queue doesn't support SG gaps and adding this | |
86 | * offset would create a gap, disallow it. | |
87 | */ | |
5014c311 | 88 | if (bvprvp && bvec_gap_to_prev(q, bvprvp, bv.bv_offset)) |
54efd50b KO |
89 | goto split; |
90 | ||
5014c311 | 91 | if (bvprvp && blk_queue_cluster(q)) { |
54efd50b KO |
92 | if (seg_size + bv.bv_len > queue_max_segment_size(q)) |
93 | goto new_segment; | |
5014c311 | 94 | if (!BIOVEC_PHYS_MERGEABLE(bvprvp, &bv)) |
54efd50b | 95 | goto new_segment; |
5014c311 | 96 | if (!BIOVEC_SEG_BOUNDARY(q, bvprvp, &bv)) |
54efd50b KO |
97 | goto new_segment; |
98 | ||
99 | seg_size += bv.bv_len; | |
100 | bvprv = bv; | |
5014c311 | 101 | bvprvp = &bv; |
52cc6eea | 102 | sectors += bv.bv_len >> 9; |
54efd50b KO |
103 | continue; |
104 | } | |
105 | new_segment: | |
106 | if (nsegs == queue_max_segments(q)) | |
107 | goto split; | |
108 | ||
109 | nsegs++; | |
110 | bvprv = bv; | |
5014c311 | 111 | bvprvp = &bv; |
54efd50b | 112 | seg_size = bv.bv_len; |
52cc6eea | 113 | sectors += bv.bv_len >> 9; |
54efd50b KO |
114 | } |
115 | ||
bdced438 | 116 | *segs = nsegs; |
54efd50b KO |
117 | return NULL; |
118 | split: | |
bdced438 | 119 | *segs = nsegs; |
52cc6eea | 120 | return bio_split(bio, sectors, GFP_NOIO, bs); |
54efd50b KO |
121 | } |
122 | ||
123 | void blk_queue_split(struct request_queue *q, struct bio **bio, | |
124 | struct bio_set *bs) | |
125 | { | |
bdced438 ML |
126 | struct bio *split, *res; |
127 | unsigned nsegs; | |
54efd50b KO |
128 | |
129 | if ((*bio)->bi_rw & REQ_DISCARD) | |
bdced438 | 130 | split = blk_bio_discard_split(q, *bio, bs, &nsegs); |
54efd50b | 131 | else if ((*bio)->bi_rw & REQ_WRITE_SAME) |
bdced438 | 132 | split = blk_bio_write_same_split(q, *bio, bs, &nsegs); |
54efd50b | 133 | else |
bdced438 ML |
134 | split = blk_bio_segment_split(q, *bio, q->bio_split, &nsegs); |
135 | ||
136 | /* physical segments can be figured out during splitting */ | |
137 | res = split ? split : *bio; | |
138 | res->bi_phys_segments = nsegs; | |
139 | bio_set_flag(res, BIO_SEG_VALID); | |
54efd50b KO |
140 | |
141 | if (split) { | |
6ac45aeb ML |
142 | /* there isn't chance to merge the splitted bio */ |
143 | split->bi_rw |= REQ_NOMERGE; | |
144 | ||
54efd50b KO |
145 | bio_chain(split, *bio); |
146 | generic_make_request(*bio); | |
147 | *bio = split; | |
148 | } | |
149 | } | |
150 | EXPORT_SYMBOL(blk_queue_split); | |
151 | ||
1e428079 | 152 | static unsigned int __blk_recalc_rq_segments(struct request_queue *q, |
07388549 ML |
153 | struct bio *bio, |
154 | bool no_sg_merge) | |
d6d48196 | 155 | { |
7988613b | 156 | struct bio_vec bv, bvprv = { NULL }; |
54efd50b | 157 | int cluster, prev = 0; |
1e428079 | 158 | unsigned int seg_size, nr_phys_segs; |
59247eae | 159 | struct bio *fbio, *bbio; |
7988613b | 160 | struct bvec_iter iter; |
d6d48196 | 161 | |
1e428079 JA |
162 | if (!bio) |
163 | return 0; | |
d6d48196 | 164 | |
5cb8850c KO |
165 | /* |
166 | * This should probably be returning 0, but blk_add_request_payload() | |
167 | * (Christoph!!!!) | |
168 | */ | |
169 | if (bio->bi_rw & REQ_DISCARD) | |
170 | return 1; | |
171 | ||
172 | if (bio->bi_rw & REQ_WRITE_SAME) | |
173 | return 1; | |
174 | ||
1e428079 | 175 | fbio = bio; |
e692cb66 | 176 | cluster = blk_queue_cluster(q); |
5df97b91 | 177 | seg_size = 0; |
2c8919de | 178 | nr_phys_segs = 0; |
1e428079 | 179 | for_each_bio(bio) { |
7988613b | 180 | bio_for_each_segment(bv, bio, iter) { |
05f1dd53 JA |
181 | /* |
182 | * If SG merging is disabled, each bio vector is | |
183 | * a segment | |
184 | */ | |
185 | if (no_sg_merge) | |
186 | goto new_segment; | |
187 | ||
54efd50b | 188 | if (prev && cluster) { |
7988613b | 189 | if (seg_size + bv.bv_len |
ae03bf63 | 190 | > queue_max_segment_size(q)) |
1e428079 | 191 | goto new_segment; |
7988613b | 192 | if (!BIOVEC_PHYS_MERGEABLE(&bvprv, &bv)) |
1e428079 | 193 | goto new_segment; |
7988613b | 194 | if (!BIOVEC_SEG_BOUNDARY(q, &bvprv, &bv)) |
1e428079 | 195 | goto new_segment; |
d6d48196 | 196 | |
7988613b | 197 | seg_size += bv.bv_len; |
1e428079 JA |
198 | bvprv = bv; |
199 | continue; | |
200 | } | |
d6d48196 | 201 | new_segment: |
1e428079 JA |
202 | if (nr_phys_segs == 1 && seg_size > |
203 | fbio->bi_seg_front_size) | |
204 | fbio->bi_seg_front_size = seg_size; | |
86771427 | 205 | |
1e428079 JA |
206 | nr_phys_segs++; |
207 | bvprv = bv; | |
54efd50b | 208 | prev = 1; |
7988613b | 209 | seg_size = bv.bv_len; |
1e428079 | 210 | } |
59247eae | 211 | bbio = bio; |
d6d48196 JA |
212 | } |
213 | ||
59247eae JA |
214 | if (nr_phys_segs == 1 && seg_size > fbio->bi_seg_front_size) |
215 | fbio->bi_seg_front_size = seg_size; | |
216 | if (seg_size > bbio->bi_seg_back_size) | |
217 | bbio->bi_seg_back_size = seg_size; | |
1e428079 JA |
218 | |
219 | return nr_phys_segs; | |
220 | } | |
221 | ||
222 | void blk_recalc_rq_segments(struct request *rq) | |
223 | { | |
07388549 ML |
224 | bool no_sg_merge = !!test_bit(QUEUE_FLAG_NO_SG_MERGE, |
225 | &rq->q->queue_flags); | |
226 | ||
227 | rq->nr_phys_segments = __blk_recalc_rq_segments(rq->q, rq->bio, | |
228 | no_sg_merge); | |
d6d48196 JA |
229 | } |
230 | ||
231 | void blk_recount_segments(struct request_queue *q, struct bio *bio) | |
232 | { | |
7f60dcaa ML |
233 | unsigned short seg_cnt; |
234 | ||
235 | /* estimate segment number by bi_vcnt for non-cloned bio */ | |
236 | if (bio_flagged(bio, BIO_CLONED)) | |
237 | seg_cnt = bio_segments(bio); | |
238 | else | |
239 | seg_cnt = bio->bi_vcnt; | |
764f612c | 240 | |
7f60dcaa ML |
241 | if (test_bit(QUEUE_FLAG_NO_SG_MERGE, &q->queue_flags) && |
242 | (seg_cnt < queue_max_segments(q))) | |
243 | bio->bi_phys_segments = seg_cnt; | |
05f1dd53 JA |
244 | else { |
245 | struct bio *nxt = bio->bi_next; | |
246 | ||
247 | bio->bi_next = NULL; | |
7f60dcaa | 248 | bio->bi_phys_segments = __blk_recalc_rq_segments(q, bio, false); |
05f1dd53 JA |
249 | bio->bi_next = nxt; |
250 | } | |
1e428079 | 251 | |
b7c44ed9 | 252 | bio_set_flag(bio, BIO_SEG_VALID); |
d6d48196 JA |
253 | } |
254 | EXPORT_SYMBOL(blk_recount_segments); | |
255 | ||
256 | static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio, | |
257 | struct bio *nxt) | |
258 | { | |
2b8221e1 | 259 | struct bio_vec end_bv = { NULL }, nxt_bv; |
f619d254 KO |
260 | struct bvec_iter iter; |
261 | ||
e692cb66 | 262 | if (!blk_queue_cluster(q)) |
d6d48196 JA |
263 | return 0; |
264 | ||
86771427 | 265 | if (bio->bi_seg_back_size + nxt->bi_seg_front_size > |
ae03bf63 | 266 | queue_max_segment_size(q)) |
d6d48196 JA |
267 | return 0; |
268 | ||
e17fc0a1 DW |
269 | if (!bio_has_data(bio)) |
270 | return 1; | |
271 | ||
f619d254 KO |
272 | bio_for_each_segment(end_bv, bio, iter) |
273 | if (end_bv.bv_len == iter.bi_size) | |
274 | break; | |
275 | ||
276 | nxt_bv = bio_iovec(nxt); | |
277 | ||
278 | if (!BIOVEC_PHYS_MERGEABLE(&end_bv, &nxt_bv)) | |
e17fc0a1 DW |
279 | return 0; |
280 | ||
d6d48196 | 281 | /* |
e17fc0a1 | 282 | * bio and nxt are contiguous in memory; check if the queue allows |
d6d48196 JA |
283 | * these two to be merged into one |
284 | */ | |
f619d254 | 285 | if (BIOVEC_SEG_BOUNDARY(q, &end_bv, &nxt_bv)) |
d6d48196 JA |
286 | return 1; |
287 | ||
288 | return 0; | |
289 | } | |
290 | ||
7988613b | 291 | static inline void |
963ab9e5 | 292 | __blk_segment_map_sg(struct request_queue *q, struct bio_vec *bvec, |
7988613b | 293 | struct scatterlist *sglist, struct bio_vec *bvprv, |
963ab9e5 AH |
294 | struct scatterlist **sg, int *nsegs, int *cluster) |
295 | { | |
296 | ||
297 | int nbytes = bvec->bv_len; | |
298 | ||
7988613b | 299 | if (*sg && *cluster) { |
963ab9e5 AH |
300 | if ((*sg)->length + nbytes > queue_max_segment_size(q)) |
301 | goto new_segment; | |
302 | ||
7988613b | 303 | if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec)) |
963ab9e5 | 304 | goto new_segment; |
7988613b | 305 | if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec)) |
963ab9e5 AH |
306 | goto new_segment; |
307 | ||
308 | (*sg)->length += nbytes; | |
309 | } else { | |
310 | new_segment: | |
311 | if (!*sg) | |
312 | *sg = sglist; | |
313 | else { | |
314 | /* | |
315 | * If the driver previously mapped a shorter | |
316 | * list, we could see a termination bit | |
317 | * prematurely unless it fully inits the sg | |
318 | * table on each mapping. We KNOW that there | |
319 | * must be more entries here or the driver | |
320 | * would be buggy, so force clear the | |
321 | * termination bit to avoid doing a full | |
322 | * sg_init_table() in drivers for each command. | |
323 | */ | |
c8164d89 | 324 | sg_unmark_end(*sg); |
963ab9e5 AH |
325 | *sg = sg_next(*sg); |
326 | } | |
327 | ||
328 | sg_set_page(*sg, bvec->bv_page, nbytes, bvec->bv_offset); | |
329 | (*nsegs)++; | |
330 | } | |
7988613b | 331 | *bvprv = *bvec; |
963ab9e5 AH |
332 | } |
333 | ||
5cb8850c KO |
334 | static int __blk_bios_map_sg(struct request_queue *q, struct bio *bio, |
335 | struct scatterlist *sglist, | |
336 | struct scatterlist **sg) | |
d6d48196 | 337 | { |
2b8221e1 | 338 | struct bio_vec bvec, bvprv = { NULL }; |
5cb8850c | 339 | struct bvec_iter iter; |
d6d48196 JA |
340 | int nsegs, cluster; |
341 | ||
342 | nsegs = 0; | |
e692cb66 | 343 | cluster = blk_queue_cluster(q); |
d6d48196 | 344 | |
5cb8850c KO |
345 | if (bio->bi_rw & REQ_DISCARD) { |
346 | /* | |
347 | * This is a hack - drivers should be neither modifying the | |
348 | * biovec, nor relying on bi_vcnt - but because of | |
349 | * blk_add_request_payload(), a discard bio may or may not have | |
350 | * a payload we need to set up here (thank you Christoph) and | |
351 | * bi_vcnt is really the only way of telling if we need to. | |
352 | */ | |
353 | ||
354 | if (bio->bi_vcnt) | |
355 | goto single_segment; | |
356 | ||
357 | return 0; | |
358 | } | |
359 | ||
360 | if (bio->bi_rw & REQ_WRITE_SAME) { | |
361 | single_segment: | |
362 | *sg = sglist; | |
363 | bvec = bio_iovec(bio); | |
364 | sg_set_page(*sg, bvec.bv_page, bvec.bv_len, bvec.bv_offset); | |
365 | return 1; | |
366 | } | |
367 | ||
368 | for_each_bio(bio) | |
369 | bio_for_each_segment(bvec, bio, iter) | |
370 | __blk_segment_map_sg(q, &bvec, sglist, &bvprv, sg, | |
371 | &nsegs, &cluster); | |
d6d48196 | 372 | |
5cb8850c KO |
373 | return nsegs; |
374 | } | |
375 | ||
376 | /* | |
377 | * map a request to scatterlist, return number of sg entries setup. Caller | |
378 | * must make sure sg can hold rq->nr_phys_segments entries | |
379 | */ | |
380 | int blk_rq_map_sg(struct request_queue *q, struct request *rq, | |
381 | struct scatterlist *sglist) | |
382 | { | |
383 | struct scatterlist *sg = NULL; | |
384 | int nsegs = 0; | |
385 | ||
386 | if (rq->bio) | |
387 | nsegs = __blk_bios_map_sg(q, rq->bio, sglist, &sg); | |
f18573ab FT |
388 | |
389 | if (unlikely(rq->cmd_flags & REQ_COPY_USER) && | |
2e46e8b2 TH |
390 | (blk_rq_bytes(rq) & q->dma_pad_mask)) { |
391 | unsigned int pad_len = | |
392 | (q->dma_pad_mask & ~blk_rq_bytes(rq)) + 1; | |
f18573ab FT |
393 | |
394 | sg->length += pad_len; | |
395 | rq->extra_len += pad_len; | |
396 | } | |
397 | ||
2fb98e84 | 398 | if (q->dma_drain_size && q->dma_drain_needed(rq)) { |
7b6d91da | 399 | if (rq->cmd_flags & REQ_WRITE) |
db0a2e00 TH |
400 | memset(q->dma_drain_buffer, 0, q->dma_drain_size); |
401 | ||
da81ed16 | 402 | sg_unmark_end(sg); |
d6d48196 JA |
403 | sg = sg_next(sg); |
404 | sg_set_page(sg, virt_to_page(q->dma_drain_buffer), | |
405 | q->dma_drain_size, | |
406 | ((unsigned long)q->dma_drain_buffer) & | |
407 | (PAGE_SIZE - 1)); | |
408 | nsegs++; | |
7a85f889 | 409 | rq->extra_len += q->dma_drain_size; |
d6d48196 JA |
410 | } |
411 | ||
412 | if (sg) | |
413 | sg_mark_end(sg); | |
414 | ||
415 | return nsegs; | |
416 | } | |
d6d48196 JA |
417 | EXPORT_SYMBOL(blk_rq_map_sg); |
418 | ||
d6d48196 JA |
419 | static inline int ll_new_hw_segment(struct request_queue *q, |
420 | struct request *req, | |
421 | struct bio *bio) | |
422 | { | |
d6d48196 JA |
423 | int nr_phys_segs = bio_phys_segments(q, bio); |
424 | ||
13f05c8d MP |
425 | if (req->nr_phys_segments + nr_phys_segs > queue_max_segments(q)) |
426 | goto no_merge; | |
427 | ||
4eaf99be | 428 | if (blk_integrity_merge_bio(q, req, bio) == false) |
13f05c8d | 429 | goto no_merge; |
d6d48196 JA |
430 | |
431 | /* | |
432 | * This will form the start of a new hw segment. Bump both | |
433 | * counters. | |
434 | */ | |
d6d48196 JA |
435 | req->nr_phys_segments += nr_phys_segs; |
436 | return 1; | |
13f05c8d MP |
437 | |
438 | no_merge: | |
439 | req->cmd_flags |= REQ_NOMERGE; | |
440 | if (req == q->last_merge) | |
441 | q->last_merge = NULL; | |
442 | return 0; | |
d6d48196 JA |
443 | } |
444 | ||
445 | int ll_back_merge_fn(struct request_queue *q, struct request *req, | |
446 | struct bio *bio) | |
447 | { | |
5e7c4274 JA |
448 | if (req_gap_back_merge(req, bio)) |
449 | return 0; | |
7f39add3 SG |
450 | if (blk_integrity_rq(req) && |
451 | integrity_req_gap_back_merge(req, bio)) | |
452 | return 0; | |
f31dc1cd MP |
453 | if (blk_rq_sectors(req) + bio_sectors(bio) > |
454 | blk_rq_get_max_sectors(req)) { | |
d6d48196 JA |
455 | req->cmd_flags |= REQ_NOMERGE; |
456 | if (req == q->last_merge) | |
457 | q->last_merge = NULL; | |
458 | return 0; | |
459 | } | |
2cdf79ca | 460 | if (!bio_flagged(req->biotail, BIO_SEG_VALID)) |
d6d48196 | 461 | blk_recount_segments(q, req->biotail); |
2cdf79ca | 462 | if (!bio_flagged(bio, BIO_SEG_VALID)) |
d6d48196 | 463 | blk_recount_segments(q, bio); |
d6d48196 JA |
464 | |
465 | return ll_new_hw_segment(q, req, bio); | |
466 | } | |
467 | ||
6728cb0e | 468 | int ll_front_merge_fn(struct request_queue *q, struct request *req, |
d6d48196 JA |
469 | struct bio *bio) |
470 | { | |
5e7c4274 JA |
471 | |
472 | if (req_gap_front_merge(req, bio)) | |
473 | return 0; | |
7f39add3 SG |
474 | if (blk_integrity_rq(req) && |
475 | integrity_req_gap_front_merge(req, bio)) | |
476 | return 0; | |
f31dc1cd MP |
477 | if (blk_rq_sectors(req) + bio_sectors(bio) > |
478 | blk_rq_get_max_sectors(req)) { | |
d6d48196 JA |
479 | req->cmd_flags |= REQ_NOMERGE; |
480 | if (req == q->last_merge) | |
481 | q->last_merge = NULL; | |
482 | return 0; | |
483 | } | |
2cdf79ca | 484 | if (!bio_flagged(bio, BIO_SEG_VALID)) |
d6d48196 | 485 | blk_recount_segments(q, bio); |
2cdf79ca | 486 | if (!bio_flagged(req->bio, BIO_SEG_VALID)) |
d6d48196 | 487 | blk_recount_segments(q, req->bio); |
d6d48196 JA |
488 | |
489 | return ll_new_hw_segment(q, req, bio); | |
490 | } | |
491 | ||
e7e24500 JA |
492 | /* |
493 | * blk-mq uses req->special to carry normal driver per-request payload, it | |
494 | * does not indicate a prepared command that we cannot merge with. | |
495 | */ | |
496 | static bool req_no_special_merge(struct request *req) | |
497 | { | |
498 | struct request_queue *q = req->q; | |
499 | ||
500 | return !q->mq_ops && req->special; | |
501 | } | |
502 | ||
d6d48196 JA |
503 | static int ll_merge_requests_fn(struct request_queue *q, struct request *req, |
504 | struct request *next) | |
505 | { | |
506 | int total_phys_segments; | |
86771427 FT |
507 | unsigned int seg_size = |
508 | req->biotail->bi_seg_back_size + next->bio->bi_seg_front_size; | |
d6d48196 JA |
509 | |
510 | /* | |
511 | * First check if the either of the requests are re-queued | |
512 | * requests. Can't merge them if they are. | |
513 | */ | |
e7e24500 | 514 | if (req_no_special_merge(req) || req_no_special_merge(next)) |
d6d48196 JA |
515 | return 0; |
516 | ||
5e7c4274 | 517 | if (req_gap_back_merge(req, next->bio)) |
854fbb9c KB |
518 | return 0; |
519 | ||
d6d48196 JA |
520 | /* |
521 | * Will it become too large? | |
522 | */ | |
f31dc1cd MP |
523 | if ((blk_rq_sectors(req) + blk_rq_sectors(next)) > |
524 | blk_rq_get_max_sectors(req)) | |
d6d48196 JA |
525 | return 0; |
526 | ||
527 | total_phys_segments = req->nr_phys_segments + next->nr_phys_segments; | |
86771427 FT |
528 | if (blk_phys_contig_segment(q, req->biotail, next->bio)) { |
529 | if (req->nr_phys_segments == 1) | |
530 | req->bio->bi_seg_front_size = seg_size; | |
531 | if (next->nr_phys_segments == 1) | |
532 | next->biotail->bi_seg_back_size = seg_size; | |
d6d48196 | 533 | total_phys_segments--; |
86771427 | 534 | } |
d6d48196 | 535 | |
8a78362c | 536 | if (total_phys_segments > queue_max_segments(q)) |
d6d48196 JA |
537 | return 0; |
538 | ||
4eaf99be | 539 | if (blk_integrity_merge_rq(q, req, next) == false) |
13f05c8d MP |
540 | return 0; |
541 | ||
d6d48196 JA |
542 | /* Merge is OK... */ |
543 | req->nr_phys_segments = total_phys_segments; | |
d6d48196 JA |
544 | return 1; |
545 | } | |
546 | ||
80a761fd TH |
547 | /** |
548 | * blk_rq_set_mixed_merge - mark a request as mixed merge | |
549 | * @rq: request to mark as mixed merge | |
550 | * | |
551 | * Description: | |
552 | * @rq is about to be mixed merged. Make sure the attributes | |
553 | * which can be mixed are set in each bio and mark @rq as mixed | |
554 | * merged. | |
555 | */ | |
556 | void blk_rq_set_mixed_merge(struct request *rq) | |
557 | { | |
558 | unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK; | |
559 | struct bio *bio; | |
560 | ||
561 | if (rq->cmd_flags & REQ_MIXED_MERGE) | |
562 | return; | |
563 | ||
564 | /* | |
565 | * @rq will no longer represent mixable attributes for all the | |
566 | * contained bios. It will just track those of the first one. | |
567 | * Distributes the attributs to each bio. | |
568 | */ | |
569 | for (bio = rq->bio; bio; bio = bio->bi_next) { | |
570 | WARN_ON_ONCE((bio->bi_rw & REQ_FAILFAST_MASK) && | |
571 | (bio->bi_rw & REQ_FAILFAST_MASK) != ff); | |
572 | bio->bi_rw |= ff; | |
573 | } | |
574 | rq->cmd_flags |= REQ_MIXED_MERGE; | |
575 | } | |
576 | ||
26308eab JM |
577 | static void blk_account_io_merge(struct request *req) |
578 | { | |
579 | if (blk_do_io_stat(req)) { | |
580 | struct hd_struct *part; | |
581 | int cpu; | |
582 | ||
583 | cpu = part_stat_lock(); | |
09e099d4 | 584 | part = req->part; |
26308eab JM |
585 | |
586 | part_round_stats(cpu, part); | |
316d315b | 587 | part_dec_in_flight(part, rq_data_dir(req)); |
26308eab | 588 | |
6c23a968 | 589 | hd_struct_put(part); |
26308eab JM |
590 | part_stat_unlock(); |
591 | } | |
592 | } | |
593 | ||
d6d48196 JA |
594 | /* |
595 | * Has to be called with the request spinlock acquired | |
596 | */ | |
597 | static int attempt_merge(struct request_queue *q, struct request *req, | |
598 | struct request *next) | |
599 | { | |
600 | if (!rq_mergeable(req) || !rq_mergeable(next)) | |
601 | return 0; | |
602 | ||
f31dc1cd MP |
603 | if (!blk_check_merge_flags(req->cmd_flags, next->cmd_flags)) |
604 | return 0; | |
605 | ||
d6d48196 JA |
606 | /* |
607 | * not contiguous | |
608 | */ | |
83096ebf | 609 | if (blk_rq_pos(req) + blk_rq_sectors(req) != blk_rq_pos(next)) |
d6d48196 JA |
610 | return 0; |
611 | ||
612 | if (rq_data_dir(req) != rq_data_dir(next) | |
613 | || req->rq_disk != next->rq_disk | |
e7e24500 | 614 | || req_no_special_merge(next)) |
d6d48196 JA |
615 | return 0; |
616 | ||
4363ac7c MP |
617 | if (req->cmd_flags & REQ_WRITE_SAME && |
618 | !blk_write_same_mergeable(req->bio, next->bio)) | |
619 | return 0; | |
620 | ||
d6d48196 JA |
621 | /* |
622 | * If we are allowed to merge, then append bio list | |
623 | * from next to rq and release next. merge_requests_fn | |
624 | * will have updated segment counts, update sector | |
625 | * counts here. | |
626 | */ | |
627 | if (!ll_merge_requests_fn(q, req, next)) | |
628 | return 0; | |
629 | ||
80a761fd TH |
630 | /* |
631 | * If failfast settings disagree or any of the two is already | |
632 | * a mixed merge, mark both as mixed before proceeding. This | |
633 | * makes sure that all involved bios have mixable attributes | |
634 | * set properly. | |
635 | */ | |
636 | if ((req->cmd_flags | next->cmd_flags) & REQ_MIXED_MERGE || | |
637 | (req->cmd_flags & REQ_FAILFAST_MASK) != | |
638 | (next->cmd_flags & REQ_FAILFAST_MASK)) { | |
639 | blk_rq_set_mixed_merge(req); | |
640 | blk_rq_set_mixed_merge(next); | |
641 | } | |
642 | ||
d6d48196 JA |
643 | /* |
644 | * At this point we have either done a back merge | |
645 | * or front merge. We need the smaller start_time of | |
646 | * the merged requests to be the current request | |
647 | * for accounting purposes. | |
648 | */ | |
649 | if (time_after(req->start_time, next->start_time)) | |
650 | req->start_time = next->start_time; | |
651 | ||
652 | req->biotail->bi_next = next->bio; | |
653 | req->biotail = next->biotail; | |
654 | ||
a2dec7b3 | 655 | req->__data_len += blk_rq_bytes(next); |
d6d48196 JA |
656 | |
657 | elv_merge_requests(q, req, next); | |
658 | ||
42dad764 JM |
659 | /* |
660 | * 'next' is going away, so update stats accordingly | |
661 | */ | |
662 | blk_account_io_merge(next); | |
d6d48196 JA |
663 | |
664 | req->ioprio = ioprio_best(req->ioprio, next->ioprio); | |
ab780f1e JA |
665 | if (blk_rq_cpu_valid(next)) |
666 | req->cpu = next->cpu; | |
d6d48196 | 667 | |
1cd96c24 BH |
668 | /* owner-ship of bio passed from next to req */ |
669 | next->bio = NULL; | |
d6d48196 JA |
670 | __blk_put_request(q, next); |
671 | return 1; | |
672 | } | |
673 | ||
674 | int attempt_back_merge(struct request_queue *q, struct request *rq) | |
675 | { | |
676 | struct request *next = elv_latter_request(q, rq); | |
677 | ||
678 | if (next) | |
679 | return attempt_merge(q, rq, next); | |
680 | ||
681 | return 0; | |
682 | } | |
683 | ||
684 | int attempt_front_merge(struct request_queue *q, struct request *rq) | |
685 | { | |
686 | struct request *prev = elv_former_request(q, rq); | |
687 | ||
688 | if (prev) | |
689 | return attempt_merge(q, prev, rq); | |
690 | ||
691 | return 0; | |
692 | } | |
5e84ea3a JA |
693 | |
694 | int blk_attempt_req_merge(struct request_queue *q, struct request *rq, | |
695 | struct request *next) | |
696 | { | |
697 | return attempt_merge(q, rq, next); | |
698 | } | |
050c8ea8 TH |
699 | |
700 | bool blk_rq_merge_ok(struct request *rq, struct bio *bio) | |
701 | { | |
e2a60da7 | 702 | if (!rq_mergeable(rq) || !bio_mergeable(bio)) |
050c8ea8 TH |
703 | return false; |
704 | ||
f31dc1cd MP |
705 | if (!blk_check_merge_flags(rq->cmd_flags, bio->bi_rw)) |
706 | return false; | |
707 | ||
050c8ea8 TH |
708 | /* different data direction or already started, don't merge */ |
709 | if (bio_data_dir(bio) != rq_data_dir(rq)) | |
710 | return false; | |
711 | ||
712 | /* must be same device and not a special request */ | |
e7e24500 | 713 | if (rq->rq_disk != bio->bi_bdev->bd_disk || req_no_special_merge(rq)) |
050c8ea8 TH |
714 | return false; |
715 | ||
716 | /* only merge integrity protected bio into ditto rq */ | |
4eaf99be | 717 | if (blk_integrity_merge_bio(rq->q, rq, bio) == false) |
050c8ea8 TH |
718 | return false; |
719 | ||
4363ac7c MP |
720 | /* must be using the same buffer */ |
721 | if (rq->cmd_flags & REQ_WRITE_SAME && | |
722 | !blk_write_same_mergeable(rq->bio, bio)) | |
723 | return false; | |
724 | ||
050c8ea8 TH |
725 | return true; |
726 | } | |
727 | ||
728 | int blk_try_merge(struct request *rq, struct bio *bio) | |
729 | { | |
4f024f37 | 730 | if (blk_rq_pos(rq) + blk_rq_sectors(rq) == bio->bi_iter.bi_sector) |
050c8ea8 | 731 | return ELEVATOR_BACK_MERGE; |
4f024f37 | 732 | else if (blk_rq_pos(rq) - bio_sectors(bio) == bio->bi_iter.bi_sector) |
050c8ea8 TH |
733 | return ELEVATOR_FRONT_MERGE; |
734 | return ELEVATOR_NO_MERGE; | |
735 | } |