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