Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Functions related to segment and merge handling |
| 4 | */ |
| 5 | #include <linux/kernel.h> |
| 6 | #include <linux/module.h> |
| 7 | #include <linux/bio.h> |
| 8 | #include <linux/blkdev.h> |
| 9 | #include <linux/scatterlist.h> |
| 10 | |
Mike Krinkin | cda2264 | 2015-12-03 17:32:30 +0300 | [diff] [blame] | 11 | #include <trace/events/block.h> |
| 12 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 13 | #include "blk.h" |
| 14 | |
Christoph Hellwig | e990700 | 2018-09-24 09:43:48 +0200 | [diff] [blame] | 15 | /* |
| 16 | * Check if the two bvecs from two bios can be merged to one segment. If yes, |
| 17 | * no need to check gap between the two bios since the 1st bio and the 1st bvec |
| 18 | * in the 2nd bio can be handled in one segment. |
| 19 | */ |
| 20 | static inline bool bios_segs_mergeable(struct request_queue *q, |
| 21 | struct bio *prev, struct bio_vec *prev_last_bv, |
| 22 | struct bio_vec *next_first_bv) |
| 23 | { |
Christoph Hellwig | 3dccdae | 2018-09-24 09:43:52 +0200 | [diff] [blame] | 24 | if (!biovec_phys_mergeable(q, prev_last_bv, next_first_bv)) |
Christoph Hellwig | e990700 | 2018-09-24 09:43:48 +0200 | [diff] [blame] | 25 | return false; |
| 26 | if (prev->bi_seg_back_size + next_first_bv->bv_len > |
| 27 | queue_max_segment_size(q)) |
| 28 | return false; |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | static inline bool bio_will_gap(struct request_queue *q, |
| 33 | struct request *prev_rq, struct bio *prev, struct bio *next) |
| 34 | { |
| 35 | struct bio_vec pb, nb; |
| 36 | |
| 37 | if (!bio_has_data(prev) || !queue_virt_boundary(q)) |
| 38 | return false; |
| 39 | |
| 40 | /* |
| 41 | * Don't merge if the 1st bio starts with non-zero offset, otherwise it |
| 42 | * is quite difficult to respect the sg gap limit. We work hard to |
| 43 | * merge a huge number of small single bios in case of mkfs. |
| 44 | */ |
| 45 | if (prev_rq) |
| 46 | bio_get_first_bvec(prev_rq->bio, &pb); |
| 47 | else |
| 48 | bio_get_first_bvec(prev, &pb); |
Johannes Thumshirn | df376b2 | 2018-11-07 14:58:14 +0100 | [diff] [blame^] | 49 | if (pb.bv_offset & queue_virt_boundary(q)) |
Christoph Hellwig | e990700 | 2018-09-24 09:43:48 +0200 | [diff] [blame] | 50 | return true; |
| 51 | |
| 52 | /* |
| 53 | * We don't need to worry about the situation that the merged segment |
| 54 | * ends in unaligned virt boundary: |
| 55 | * |
| 56 | * - if 'pb' ends aligned, the merged segment ends aligned |
| 57 | * - if 'pb' ends unaligned, the next bio must include |
| 58 | * one single bvec of 'nb', otherwise the 'nb' can't |
| 59 | * merge with 'pb' |
| 60 | */ |
| 61 | bio_get_last_bvec(prev, &pb); |
| 62 | bio_get_first_bvec(next, &nb); |
| 63 | if (bios_segs_mergeable(q, prev, &pb, &nb)) |
| 64 | return false; |
| 65 | return __bvec_gap_to_prev(q, &pb, nb.bv_offset); |
| 66 | } |
| 67 | |
| 68 | static inline bool req_gap_back_merge(struct request *req, struct bio *bio) |
| 69 | { |
| 70 | return bio_will_gap(req->q, req, req->biotail, bio); |
| 71 | } |
| 72 | |
| 73 | static inline bool req_gap_front_merge(struct request *req, struct bio *bio) |
| 74 | { |
| 75 | return bio_will_gap(req->q, NULL, bio, req->bio); |
| 76 | } |
| 77 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 78 | static struct bio *blk_bio_discard_split(struct request_queue *q, |
| 79 | struct bio *bio, |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 80 | struct bio_set *bs, |
| 81 | unsigned *nsegs) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 82 | { |
| 83 | unsigned int max_discard_sectors, granularity; |
| 84 | int alignment; |
| 85 | sector_t tmp; |
| 86 | unsigned split_sectors; |
| 87 | |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 88 | *nsegs = 1; |
| 89 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 90 | /* Zero-sector (unknown) and one-sector granularities are the same. */ |
| 91 | granularity = max(q->limits.discard_granularity >> 9, 1U); |
| 92 | |
| 93 | max_discard_sectors = min(q->limits.max_discard_sectors, UINT_MAX >> 9); |
| 94 | max_discard_sectors -= max_discard_sectors % granularity; |
| 95 | |
| 96 | if (unlikely(!max_discard_sectors)) { |
| 97 | /* XXX: warn */ |
| 98 | return NULL; |
| 99 | } |
| 100 | |
| 101 | if (bio_sectors(bio) <= max_discard_sectors) |
| 102 | return NULL; |
| 103 | |
| 104 | split_sectors = max_discard_sectors; |
| 105 | |
| 106 | /* |
| 107 | * If the next starting sector would be misaligned, stop the discard at |
| 108 | * the previous aligned sector. |
| 109 | */ |
| 110 | alignment = (q->limits.discard_alignment >> 9) % granularity; |
| 111 | |
| 112 | tmp = bio->bi_iter.bi_sector + split_sectors - alignment; |
| 113 | tmp = sector_div(tmp, granularity); |
| 114 | |
| 115 | if (split_sectors > tmp) |
| 116 | split_sectors -= tmp; |
| 117 | |
| 118 | return bio_split(bio, split_sectors, GFP_NOIO, bs); |
| 119 | } |
| 120 | |
Christoph Hellwig | 885fa13 | 2017-04-05 19:21:01 +0200 | [diff] [blame] | 121 | static struct bio *blk_bio_write_zeroes_split(struct request_queue *q, |
| 122 | struct bio *bio, struct bio_set *bs, unsigned *nsegs) |
| 123 | { |
| 124 | *nsegs = 1; |
| 125 | |
| 126 | if (!q->limits.max_write_zeroes_sectors) |
| 127 | return NULL; |
| 128 | |
| 129 | if (bio_sectors(bio) <= q->limits.max_write_zeroes_sectors) |
| 130 | return NULL; |
| 131 | |
| 132 | return bio_split(bio, q->limits.max_write_zeroes_sectors, GFP_NOIO, bs); |
| 133 | } |
| 134 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 135 | static struct bio *blk_bio_write_same_split(struct request_queue *q, |
| 136 | struct bio *bio, |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 137 | struct bio_set *bs, |
| 138 | unsigned *nsegs) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 139 | { |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 140 | *nsegs = 1; |
| 141 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 142 | if (!q->limits.max_write_same_sectors) |
| 143 | return NULL; |
| 144 | |
| 145 | if (bio_sectors(bio) <= q->limits.max_write_same_sectors) |
| 146 | return NULL; |
| 147 | |
| 148 | return bio_split(bio, q->limits.max_write_same_sectors, GFP_NOIO, bs); |
| 149 | } |
| 150 | |
Ming Lei | d0e5fbb | 2016-01-23 08:05:33 +0800 | [diff] [blame] | 151 | static inline unsigned get_max_io_size(struct request_queue *q, |
| 152 | struct bio *bio) |
| 153 | { |
| 154 | unsigned sectors = blk_max_size_offset(q, bio->bi_iter.bi_sector); |
| 155 | unsigned mask = queue_logical_block_size(q) - 1; |
| 156 | |
| 157 | /* aligned to logical block size */ |
| 158 | sectors &= ~(mask >> 9); |
| 159 | |
| 160 | return sectors; |
| 161 | } |
| 162 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 163 | static struct bio *blk_bio_segment_split(struct request_queue *q, |
| 164 | struct bio *bio, |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 165 | struct bio_set *bs, |
| 166 | unsigned *segs) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 167 | { |
Jens Axboe | 5014c31 | 2015-09-02 16:46:02 -0600 | [diff] [blame] | 168 | struct bio_vec bv, bvprv, *bvprvp = NULL; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 169 | struct bvec_iter iter; |
Kent Overstreet | 8ae1266 | 2015-04-27 23:48:34 -0700 | [diff] [blame] | 170 | unsigned seg_size = 0, nsegs = 0, sectors = 0; |
Ming Lei | 02e7074 | 2015-11-24 10:35:30 +0800 | [diff] [blame] | 171 | unsigned front_seg_size = bio->bi_seg_front_size; |
| 172 | bool do_split = true; |
| 173 | struct bio *new = NULL; |
Ming Lei | d0e5fbb | 2016-01-23 08:05:33 +0800 | [diff] [blame] | 174 | const unsigned max_sectors = get_max_io_size(q, bio); |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 175 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 176 | bio_for_each_segment(bv, bio, iter) { |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 177 | /* |
| 178 | * If the queue doesn't support SG gaps and adding this |
| 179 | * offset would create a gap, disallow it. |
| 180 | */ |
Jens Axboe | 5014c31 | 2015-09-02 16:46:02 -0600 | [diff] [blame] | 181 | if (bvprvp && bvec_gap_to_prev(q, bvprvp, bv.bv_offset)) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 182 | goto split; |
| 183 | |
Ming Lei | d0e5fbb | 2016-01-23 08:05:33 +0800 | [diff] [blame] | 184 | if (sectors + (bv.bv_len >> 9) > max_sectors) { |
Keith Busch | e36f620 | 2016-01-12 15:08:39 -0700 | [diff] [blame] | 185 | /* |
| 186 | * Consider this a new segment if we're splitting in |
| 187 | * the middle of this vector. |
| 188 | */ |
| 189 | if (nsegs < queue_max_segments(q) && |
Ming Lei | d0e5fbb | 2016-01-23 08:05:33 +0800 | [diff] [blame] | 190 | sectors < max_sectors) { |
Keith Busch | e36f620 | 2016-01-12 15:08:39 -0700 | [diff] [blame] | 191 | nsegs++; |
Ming Lei | d0e5fbb | 2016-01-23 08:05:33 +0800 | [diff] [blame] | 192 | sectors = max_sectors; |
Keith Busch | e36f620 | 2016-01-12 15:08:39 -0700 | [diff] [blame] | 193 | } |
Ming Lei | cf8c0c6 | 2017-12-18 20:22:16 +0800 | [diff] [blame] | 194 | goto split; |
Keith Busch | e36f620 | 2016-01-12 15:08:39 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Jens Axboe | 5014c31 | 2015-09-02 16:46:02 -0600 | [diff] [blame] | 197 | if (bvprvp && blk_queue_cluster(q)) { |
Ming Lei | b4b6cb6 | 2018-01-10 10:51:29 +0800 | [diff] [blame] | 198 | if (seg_size + bv.bv_len > queue_max_segment_size(q)) |
| 199 | goto new_segment; |
Christoph Hellwig | 3dccdae | 2018-09-24 09:43:52 +0200 | [diff] [blame] | 200 | if (!biovec_phys_mergeable(q, bvprvp, &bv)) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 201 | goto new_segment; |
| 202 | |
| 203 | seg_size += bv.bv_len; |
| 204 | bvprv = bv; |
Ming Lei | 578270b | 2015-11-24 10:35:29 +0800 | [diff] [blame] | 205 | bvprvp = &bvprv; |
Ming Lei | 52cc6ee | 2015-09-17 09:58:38 -0600 | [diff] [blame] | 206 | sectors += bv.bv_len >> 9; |
Ming Lei | a88d32a | 2015-11-30 16:05:49 +0800 | [diff] [blame] | 207 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 208 | continue; |
| 209 | } |
| 210 | new_segment: |
| 211 | if (nsegs == queue_max_segments(q)) |
| 212 | goto split; |
| 213 | |
Ming Lei | 6a501bf | 2017-12-18 20:22:14 +0800 | [diff] [blame] | 214 | if (nsegs == 1 && seg_size > front_seg_size) |
| 215 | front_seg_size = seg_size; |
| 216 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 217 | nsegs++; |
| 218 | bvprv = bv; |
Ming Lei | 578270b | 2015-11-24 10:35:29 +0800 | [diff] [blame] | 219 | bvprvp = &bvprv; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 220 | seg_size = bv.bv_len; |
Ming Lei | 52cc6ee | 2015-09-17 09:58:38 -0600 | [diff] [blame] | 221 | sectors += bv.bv_len >> 9; |
Ming Lei | 02e7074 | 2015-11-24 10:35:30 +0800 | [diff] [blame] | 222 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Ming Lei | 02e7074 | 2015-11-24 10:35:30 +0800 | [diff] [blame] | 225 | do_split = false; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 226 | split: |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 227 | *segs = nsegs; |
Ming Lei | 02e7074 | 2015-11-24 10:35:30 +0800 | [diff] [blame] | 228 | |
| 229 | if (do_split) { |
| 230 | new = bio_split(bio, sectors, GFP_NOIO, bs); |
| 231 | if (new) |
| 232 | bio = new; |
| 233 | } |
| 234 | |
Ming Lei | 6a501bf | 2017-12-18 20:22:14 +0800 | [diff] [blame] | 235 | if (nsegs == 1 && seg_size > front_seg_size) |
| 236 | front_seg_size = seg_size; |
Ming Lei | 02e7074 | 2015-11-24 10:35:30 +0800 | [diff] [blame] | 237 | bio->bi_seg_front_size = front_seg_size; |
| 238 | if (seg_size > bio->bi_seg_back_size) |
| 239 | bio->bi_seg_back_size = seg_size; |
| 240 | |
| 241 | return do_split ? new : NULL; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 242 | } |
| 243 | |
NeilBrown | af67c31 | 2017-06-18 14:38:57 +1000 | [diff] [blame] | 244 | void blk_queue_split(struct request_queue *q, struct bio **bio) |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 245 | { |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 246 | struct bio *split, *res; |
| 247 | unsigned nsegs; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 248 | |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 249 | switch (bio_op(*bio)) { |
| 250 | case REQ_OP_DISCARD: |
| 251 | case REQ_OP_SECURE_ERASE: |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 252 | split = blk_bio_discard_split(q, *bio, &q->bio_split, &nsegs); |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 253 | break; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 254 | case REQ_OP_WRITE_ZEROES: |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 255 | split = blk_bio_write_zeroes_split(q, *bio, &q->bio_split, &nsegs); |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 256 | break; |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 257 | case REQ_OP_WRITE_SAME: |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 258 | split = blk_bio_write_same_split(q, *bio, &q->bio_split, &nsegs); |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 259 | break; |
| 260 | default: |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 261 | split = blk_bio_segment_split(q, *bio, &q->bio_split, &nsegs); |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 262 | break; |
| 263 | } |
Ming Lei | bdced43 | 2015-10-20 23:13:52 +0800 | [diff] [blame] | 264 | |
| 265 | /* physical segments can be figured out during splitting */ |
| 266 | res = split ? split : *bio; |
| 267 | res->bi_phys_segments = nsegs; |
| 268 | bio_set_flag(res, BIO_SEG_VALID); |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 269 | |
| 270 | if (split) { |
Ming Lei | 6ac45ae | 2015-10-20 23:13:53 +0800 | [diff] [blame] | 271 | /* there isn't chance to merge the splitted bio */ |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 272 | split->bi_opf |= REQ_NOMERGE; |
Ming Lei | 6ac45ae | 2015-10-20 23:13:53 +0800 | [diff] [blame] | 273 | |
Jens Axboe | cd4a4ae | 2018-06-02 14:04:07 -0600 | [diff] [blame] | 274 | /* |
| 275 | * Since we're recursing into make_request here, ensure |
| 276 | * that we mark this bio as already having entered the queue. |
| 277 | * If not, and the queue is going away, we can get stuck |
| 278 | * forever on waiting for the queue reference to drop. But |
| 279 | * that will never happen, as we're already holding a |
| 280 | * reference to it. |
| 281 | */ |
| 282 | bio_set_flag(*bio, BIO_QUEUE_ENTERED); |
| 283 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 284 | bio_chain(split, *bio); |
Mike Krinkin | cda2264 | 2015-12-03 17:32:30 +0300 | [diff] [blame] | 285 | trace_block_split(q, split, (*bio)->bi_iter.bi_sector); |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 286 | generic_make_request(*bio); |
| 287 | *bio = split; |
| 288 | } |
| 289 | } |
| 290 | EXPORT_SYMBOL(blk_queue_split); |
| 291 | |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 292 | static unsigned int __blk_recalc_rq_segments(struct request_queue *q, |
Ming Lei | 0738854 | 2014-09-02 23:02:59 +0800 | [diff] [blame] | 293 | struct bio *bio, |
| 294 | bool no_sg_merge) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 295 | { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 296 | struct bio_vec bv, bvprv = { NULL }; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 297 | int cluster, prev = 0; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 298 | unsigned int seg_size, nr_phys_segs; |
Jens Axboe | 59247ea | 2009-03-06 08:55:24 +0100 | [diff] [blame] | 299 | struct bio *fbio, *bbio; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 300 | struct bvec_iter iter; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 301 | |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 302 | if (!bio) |
| 303 | return 0; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 304 | |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 305 | switch (bio_op(bio)) { |
| 306 | case REQ_OP_DISCARD: |
| 307 | case REQ_OP_SECURE_ERASE: |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 308 | case REQ_OP_WRITE_ZEROES: |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 309 | return 0; |
| 310 | case REQ_OP_WRITE_SAME: |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 311 | return 1; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 312 | } |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 313 | |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 314 | fbio = bio; |
Martin K. Petersen | e692cb6 | 2010-12-01 19:41:49 +0100 | [diff] [blame] | 315 | cluster = blk_queue_cluster(q); |
Mikulas Patocka | 5df97b9 | 2008-08-15 10:20:02 +0200 | [diff] [blame] | 316 | seg_size = 0; |
Andi Kleen | 2c8919d | 2010-06-21 11:02:47 +0200 | [diff] [blame] | 317 | nr_phys_segs = 0; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 318 | for_each_bio(bio) { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 319 | bio_for_each_segment(bv, bio, iter) { |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 320 | /* |
Jens Axboe | 05f1dd5 | 2014-05-29 09:53:32 -0600 | [diff] [blame] | 321 | * If SG merging is disabled, each bio vector is |
| 322 | * a segment |
| 323 | */ |
| 324 | if (no_sg_merge) |
| 325 | goto new_segment; |
| 326 | |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 327 | if (prev && cluster) { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 328 | if (seg_size + bv.bv_len |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 329 | > queue_max_segment_size(q)) |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 330 | goto new_segment; |
Christoph Hellwig | 3dccdae | 2018-09-24 09:43:52 +0200 | [diff] [blame] | 331 | if (!biovec_phys_mergeable(q, &bvprv, &bv)) |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 332 | goto new_segment; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 333 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 334 | seg_size += bv.bv_len; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 335 | bvprv = bv; |
| 336 | continue; |
| 337 | } |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 338 | new_segment: |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 339 | if (nr_phys_segs == 1 && seg_size > |
| 340 | fbio->bi_seg_front_size) |
| 341 | fbio->bi_seg_front_size = seg_size; |
FUJITA Tomonori | 8677142 | 2008-10-13 14:19:05 +0200 | [diff] [blame] | 342 | |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 343 | nr_phys_segs++; |
| 344 | bvprv = bv; |
Kent Overstreet | 54efd50 | 2015-04-23 22:37:18 -0700 | [diff] [blame] | 345 | prev = 1; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 346 | seg_size = bv.bv_len; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 347 | } |
Jens Axboe | 59247ea | 2009-03-06 08:55:24 +0100 | [diff] [blame] | 348 | bbio = bio; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 349 | } |
| 350 | |
Jens Axboe | 59247ea | 2009-03-06 08:55:24 +0100 | [diff] [blame] | 351 | if (nr_phys_segs == 1 && seg_size > fbio->bi_seg_front_size) |
| 352 | fbio->bi_seg_front_size = seg_size; |
| 353 | if (seg_size > bbio->bi_seg_back_size) |
| 354 | bbio->bi_seg_back_size = seg_size; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 355 | |
| 356 | return nr_phys_segs; |
| 357 | } |
| 358 | |
| 359 | void blk_recalc_rq_segments(struct request *rq) |
| 360 | { |
Ming Lei | 0738854 | 2014-09-02 23:02:59 +0800 | [diff] [blame] | 361 | bool no_sg_merge = !!test_bit(QUEUE_FLAG_NO_SG_MERGE, |
| 362 | &rq->q->queue_flags); |
| 363 | |
| 364 | rq->nr_phys_segments = __blk_recalc_rq_segments(rq->q, rq->bio, |
| 365 | no_sg_merge); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | void blk_recount_segments(struct request_queue *q, struct bio *bio) |
| 369 | { |
Ming Lei | 7f60dca | 2014-11-12 00:15:41 +0800 | [diff] [blame] | 370 | unsigned short seg_cnt; |
Ming Lei | 764f612 | 2014-10-09 23:17:35 +0800 | [diff] [blame] | 371 | |
Ming Lei | 7f60dca | 2014-11-12 00:15:41 +0800 | [diff] [blame] | 372 | /* estimate segment number by bi_vcnt for non-cloned bio */ |
| 373 | if (bio_flagged(bio, BIO_CLONED)) |
| 374 | seg_cnt = bio_segments(bio); |
| 375 | else |
| 376 | seg_cnt = bio->bi_vcnt; |
| 377 | |
| 378 | if (test_bit(QUEUE_FLAG_NO_SG_MERGE, &q->queue_flags) && |
| 379 | (seg_cnt < queue_max_segments(q))) |
| 380 | bio->bi_phys_segments = seg_cnt; |
Jens Axboe | 05f1dd5 | 2014-05-29 09:53:32 -0600 | [diff] [blame] | 381 | else { |
| 382 | struct bio *nxt = bio->bi_next; |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 383 | |
Jens Axboe | 05f1dd5 | 2014-05-29 09:53:32 -0600 | [diff] [blame] | 384 | bio->bi_next = NULL; |
Ming Lei | 7f60dca | 2014-11-12 00:15:41 +0800 | [diff] [blame] | 385 | bio->bi_phys_segments = __blk_recalc_rq_segments(q, bio, false); |
Jens Axboe | 05f1dd5 | 2014-05-29 09:53:32 -0600 | [diff] [blame] | 386 | bio->bi_next = nxt; |
| 387 | } |
| 388 | |
Jens Axboe | b7c44ed | 2015-07-24 12:37:59 -0600 | [diff] [blame] | 389 | bio_set_flag(bio, BIO_SEG_VALID); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 390 | } |
| 391 | EXPORT_SYMBOL(blk_recount_segments); |
| 392 | |
| 393 | static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio, |
| 394 | struct bio *nxt) |
| 395 | { |
Kent Overstreet | 2b8221e | 2013-12-03 14:29:09 -0700 | [diff] [blame] | 396 | struct bio_vec end_bv = { NULL }, nxt_bv; |
Kent Overstreet | f619d25 | 2013-08-07 14:30:33 -0700 | [diff] [blame] | 397 | |
Martin K. Petersen | e692cb6 | 2010-12-01 19:41:49 +0100 | [diff] [blame] | 398 | if (!blk_queue_cluster(q)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 399 | return 0; |
| 400 | |
FUJITA Tomonori | 8677142 | 2008-10-13 14:19:05 +0200 | [diff] [blame] | 401 | if (bio->bi_seg_back_size + nxt->bi_seg_front_size > |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 402 | queue_max_segment_size(q)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 403 | return 0; |
| 404 | |
David Woodhouse | e17fc0a | 2008-08-09 16:42:20 +0100 | [diff] [blame] | 405 | if (!bio_has_data(bio)) |
| 406 | return 1; |
| 407 | |
Ming Lei | e827091 | 2016-02-26 23:40:53 +0800 | [diff] [blame] | 408 | bio_get_last_bvec(bio, &end_bv); |
| 409 | bio_get_first_bvec(nxt, &nxt_bv); |
Kent Overstreet | f619d25 | 2013-08-07 14:30:33 -0700 | [diff] [blame] | 410 | |
Christoph Hellwig | 3dccdae | 2018-09-24 09:43:52 +0200 | [diff] [blame] | 411 | return biovec_phys_mergeable(q, &end_bv, &nxt_bv); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 412 | } |
| 413 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 414 | static inline void |
Asias He | 963ab9e | 2012-08-02 23:42:03 +0200 | [diff] [blame] | 415 | __blk_segment_map_sg(struct request_queue *q, struct bio_vec *bvec, |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 416 | struct scatterlist *sglist, struct bio_vec *bvprv, |
Asias He | 963ab9e | 2012-08-02 23:42:03 +0200 | [diff] [blame] | 417 | struct scatterlist **sg, int *nsegs, int *cluster) |
| 418 | { |
| 419 | |
| 420 | int nbytes = bvec->bv_len; |
| 421 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 422 | if (*sg && *cluster) { |
Ming Lei | b4b6cb6 | 2018-01-10 10:51:29 +0800 | [diff] [blame] | 423 | if ((*sg)->length + nbytes > queue_max_segment_size(q)) |
| 424 | goto new_segment; |
Christoph Hellwig | 3dccdae | 2018-09-24 09:43:52 +0200 | [diff] [blame] | 425 | if (!biovec_phys_mergeable(q, bvprv, bvec)) |
Asias He | 963ab9e | 2012-08-02 23:42:03 +0200 | [diff] [blame] | 426 | goto new_segment; |
| 427 | |
| 428 | (*sg)->length += nbytes; |
| 429 | } else { |
| 430 | new_segment: |
| 431 | if (!*sg) |
| 432 | *sg = sglist; |
| 433 | else { |
| 434 | /* |
| 435 | * If the driver previously mapped a shorter |
| 436 | * list, we could see a termination bit |
| 437 | * prematurely unless it fully inits the sg |
| 438 | * table on each mapping. We KNOW that there |
| 439 | * must be more entries here or the driver |
| 440 | * would be buggy, so force clear the |
| 441 | * termination bit to avoid doing a full |
| 442 | * sg_init_table() in drivers for each command. |
| 443 | */ |
Paolo Bonzini | c8164d8 | 2013-03-20 15:37:08 +1030 | [diff] [blame] | 444 | sg_unmark_end(*sg); |
Asias He | 963ab9e | 2012-08-02 23:42:03 +0200 | [diff] [blame] | 445 | *sg = sg_next(*sg); |
| 446 | } |
| 447 | |
| 448 | sg_set_page(*sg, bvec->bv_page, nbytes, bvec->bv_offset); |
| 449 | (*nsegs)++; |
| 450 | } |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 451 | *bvprv = *bvec; |
Asias He | 963ab9e | 2012-08-02 23:42:03 +0200 | [diff] [blame] | 452 | } |
| 453 | |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 454 | static inline int __blk_bvec_map_sg(struct request_queue *q, struct bio_vec bv, |
| 455 | struct scatterlist *sglist, struct scatterlist **sg) |
| 456 | { |
| 457 | *sg = sglist; |
| 458 | sg_set_page(*sg, bv.bv_page, bv.bv_len, bv.bv_offset); |
| 459 | return 1; |
| 460 | } |
| 461 | |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 462 | static int __blk_bios_map_sg(struct request_queue *q, struct bio *bio, |
| 463 | struct scatterlist *sglist, |
| 464 | struct scatterlist **sg) |
| 465 | { |
| 466 | struct bio_vec bvec, bvprv = { NULL }; |
| 467 | struct bvec_iter iter; |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 468 | int cluster = blk_queue_cluster(q), nsegs = 0; |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 469 | |
| 470 | for_each_bio(bio) |
| 471 | bio_for_each_segment(bvec, bio, iter) |
| 472 | __blk_segment_map_sg(q, &bvec, sglist, &bvprv, sg, |
| 473 | &nsegs, &cluster); |
| 474 | |
| 475 | return nsegs; |
| 476 | } |
| 477 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 478 | /* |
| 479 | * map a request to scatterlist, return number of sg entries setup. Caller |
| 480 | * must make sure sg can hold rq->nr_phys_segments entries |
| 481 | */ |
| 482 | int blk_rq_map_sg(struct request_queue *q, struct request *rq, |
| 483 | struct scatterlist *sglist) |
| 484 | { |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 485 | struct scatterlist *sg = NULL; |
| 486 | int nsegs = 0; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 487 | |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 488 | if (rq->rq_flags & RQF_SPECIAL_PAYLOAD) |
| 489 | nsegs = __blk_bvec_map_sg(q, rq->special_vec, sglist, &sg); |
| 490 | else if (rq->bio && bio_op(rq->bio) == REQ_OP_WRITE_SAME) |
| 491 | nsegs = __blk_bvec_map_sg(q, bio_iovec(rq->bio), sglist, &sg); |
| 492 | else if (rq->bio) |
Kent Overstreet | 5cb8850 | 2014-02-07 13:53:46 -0700 | [diff] [blame] | 493 | nsegs = __blk_bios_map_sg(q, rq->bio, sglist, &sg); |
FUJITA Tomonori | f18573a | 2008-04-11 12:56:52 +0200 | [diff] [blame] | 494 | |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 495 | if (unlikely(rq->rq_flags & RQF_COPY_USER) && |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 496 | (blk_rq_bytes(rq) & q->dma_pad_mask)) { |
| 497 | unsigned int pad_len = |
| 498 | (q->dma_pad_mask & ~blk_rq_bytes(rq)) + 1; |
FUJITA Tomonori | f18573a | 2008-04-11 12:56:52 +0200 | [diff] [blame] | 499 | |
| 500 | sg->length += pad_len; |
| 501 | rq->extra_len += pad_len; |
| 502 | } |
| 503 | |
Tejun Heo | 2fb98e8 | 2008-02-19 11:36:53 +0100 | [diff] [blame] | 504 | if (q->dma_drain_size && q->dma_drain_needed(rq)) { |
Mike Christie | a8ebb05 | 2016-06-05 14:31:45 -0500 | [diff] [blame] | 505 | if (op_is_write(req_op(rq))) |
Tejun Heo | db0a2e0 | 2008-02-19 11:36:55 +0100 | [diff] [blame] | 506 | memset(q->dma_drain_buffer, 0, q->dma_drain_size); |
| 507 | |
Dan Williams | da81ed1 | 2015-08-07 18:15:14 +0200 | [diff] [blame] | 508 | sg_unmark_end(sg); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 509 | sg = sg_next(sg); |
| 510 | sg_set_page(sg, virt_to_page(q->dma_drain_buffer), |
| 511 | q->dma_drain_size, |
| 512 | ((unsigned long)q->dma_drain_buffer) & |
| 513 | (PAGE_SIZE - 1)); |
| 514 | nsegs++; |
FUJITA Tomonori | 7a85f88 | 2008-03-04 11:17:11 +0100 | [diff] [blame] | 515 | rq->extra_len += q->dma_drain_size; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | if (sg) |
| 519 | sg_mark_end(sg); |
| 520 | |
Ming Lei | 12e57f5 | 2015-11-24 10:35:31 +0800 | [diff] [blame] | 521 | /* |
| 522 | * Something must have been wrong if the figured number of |
| 523 | * segment is bigger than number of req's physical segments |
| 524 | */ |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 525 | WARN_ON(nsegs > blk_rq_nr_phys_segments(rq)); |
Ming Lei | 12e57f5 | 2015-11-24 10:35:31 +0800 | [diff] [blame] | 526 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 527 | return nsegs; |
| 528 | } |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 529 | EXPORT_SYMBOL(blk_rq_map_sg); |
| 530 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 531 | static inline int ll_new_hw_segment(struct request_queue *q, |
| 532 | struct request *req, |
| 533 | struct bio *bio) |
| 534 | { |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 535 | int nr_phys_segs = bio_phys_segments(q, bio); |
| 536 | |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 537 | if (req->nr_phys_segments + nr_phys_segs > queue_max_segments(q)) |
| 538 | goto no_merge; |
| 539 | |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 540 | if (blk_integrity_merge_bio(q, req, bio) == false) |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 541 | goto no_merge; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 542 | |
| 543 | /* |
| 544 | * This will form the start of a new hw segment. Bump both |
| 545 | * counters. |
| 546 | */ |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 547 | req->nr_phys_segments += nr_phys_segs; |
| 548 | return 1; |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 549 | |
| 550 | no_merge: |
Ritesh Harjani | e0c7230 | 2016-12-01 08:36:16 -0700 | [diff] [blame] | 551 | req_set_nomerge(q, req); |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 552 | return 0; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | int ll_back_merge_fn(struct request_queue *q, struct request *req, |
| 556 | struct bio *bio) |
| 557 | { |
Jens Axboe | 5e7c427 | 2015-09-03 19:28:20 +0300 | [diff] [blame] | 558 | if (req_gap_back_merge(req, bio)) |
| 559 | return 0; |
Sagi Grimberg | 7f39add | 2015-09-11 09:03:04 -0600 | [diff] [blame] | 560 | if (blk_integrity_rq(req) && |
| 561 | integrity_req_gap_back_merge(req, bio)) |
| 562 | return 0; |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 563 | if (blk_rq_sectors(req) + bio_sectors(bio) > |
Damien Le Moal | 17007f3 | 2016-07-20 21:40:47 -0600 | [diff] [blame] | 564 | blk_rq_get_max_sectors(req, blk_rq_pos(req))) { |
Ritesh Harjani | e0c7230 | 2016-12-01 08:36:16 -0700 | [diff] [blame] | 565 | req_set_nomerge(q, req); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 566 | return 0; |
| 567 | } |
Jens Axboe | 2cdf79c | 2008-05-07 09:33:55 +0200 | [diff] [blame] | 568 | if (!bio_flagged(req->biotail, BIO_SEG_VALID)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 569 | blk_recount_segments(q, req->biotail); |
Jens Axboe | 2cdf79c | 2008-05-07 09:33:55 +0200 | [diff] [blame] | 570 | if (!bio_flagged(bio, BIO_SEG_VALID)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 571 | blk_recount_segments(q, bio); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 572 | |
| 573 | return ll_new_hw_segment(q, req, bio); |
| 574 | } |
| 575 | |
Jens Axboe | 6728cb0 | 2008-01-31 13:03:55 +0100 | [diff] [blame] | 576 | int ll_front_merge_fn(struct request_queue *q, struct request *req, |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 577 | struct bio *bio) |
| 578 | { |
Jens Axboe | 5e7c427 | 2015-09-03 19:28:20 +0300 | [diff] [blame] | 579 | |
| 580 | if (req_gap_front_merge(req, bio)) |
| 581 | return 0; |
Sagi Grimberg | 7f39add | 2015-09-11 09:03:04 -0600 | [diff] [blame] | 582 | if (blk_integrity_rq(req) && |
| 583 | integrity_req_gap_front_merge(req, bio)) |
| 584 | return 0; |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 585 | if (blk_rq_sectors(req) + bio_sectors(bio) > |
Damien Le Moal | 17007f3 | 2016-07-20 21:40:47 -0600 | [diff] [blame] | 586 | blk_rq_get_max_sectors(req, bio->bi_iter.bi_sector)) { |
Ritesh Harjani | e0c7230 | 2016-12-01 08:36:16 -0700 | [diff] [blame] | 587 | req_set_nomerge(q, req); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 588 | return 0; |
| 589 | } |
Jens Axboe | 2cdf79c | 2008-05-07 09:33:55 +0200 | [diff] [blame] | 590 | if (!bio_flagged(bio, BIO_SEG_VALID)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 591 | blk_recount_segments(q, bio); |
Jens Axboe | 2cdf79c | 2008-05-07 09:33:55 +0200 | [diff] [blame] | 592 | if (!bio_flagged(req->bio, BIO_SEG_VALID)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 593 | blk_recount_segments(q, req->bio); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 594 | |
| 595 | return ll_new_hw_segment(q, req, bio); |
| 596 | } |
| 597 | |
Jens Axboe | e7e2450 | 2013-10-29 12:11:47 -0600 | [diff] [blame] | 598 | /* |
| 599 | * blk-mq uses req->special to carry normal driver per-request payload, it |
| 600 | * does not indicate a prepared command that we cannot merge with. |
| 601 | */ |
| 602 | static bool req_no_special_merge(struct request *req) |
| 603 | { |
| 604 | struct request_queue *q = req->q; |
| 605 | |
| 606 | return !q->mq_ops && req->special; |
| 607 | } |
| 608 | |
Jens Axboe | 445251d | 2018-02-01 14:01:02 -0700 | [diff] [blame] | 609 | static bool req_attempt_discard_merge(struct request_queue *q, struct request *req, |
| 610 | struct request *next) |
| 611 | { |
| 612 | unsigned short segments = blk_rq_nr_discard_segments(req); |
| 613 | |
| 614 | if (segments >= queue_max_discard_segments(q)) |
| 615 | goto no_merge; |
| 616 | if (blk_rq_sectors(req) + bio_sectors(next->bio) > |
| 617 | blk_rq_get_max_sectors(req, blk_rq_pos(req))) |
| 618 | goto no_merge; |
| 619 | |
| 620 | req->nr_phys_segments = segments + blk_rq_nr_discard_segments(next); |
| 621 | return true; |
| 622 | no_merge: |
| 623 | req_set_nomerge(q, req); |
| 624 | return false; |
| 625 | } |
| 626 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 627 | static int ll_merge_requests_fn(struct request_queue *q, struct request *req, |
| 628 | struct request *next) |
| 629 | { |
| 630 | int total_phys_segments; |
FUJITA Tomonori | 8677142 | 2008-10-13 14:19:05 +0200 | [diff] [blame] | 631 | unsigned int seg_size = |
| 632 | req->biotail->bi_seg_back_size + next->bio->bi_seg_front_size; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 633 | |
| 634 | /* |
| 635 | * First check if the either of the requests are re-queued |
| 636 | * requests. Can't merge them if they are. |
| 637 | */ |
Jens Axboe | e7e2450 | 2013-10-29 12:11:47 -0600 | [diff] [blame] | 638 | if (req_no_special_merge(req) || req_no_special_merge(next)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 639 | return 0; |
| 640 | |
Jens Axboe | 5e7c427 | 2015-09-03 19:28:20 +0300 | [diff] [blame] | 641 | if (req_gap_back_merge(req, next->bio)) |
Keith Busch | 854fbb9 | 2015-02-11 08:20:13 -0700 | [diff] [blame] | 642 | return 0; |
| 643 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 644 | /* |
| 645 | * Will it become too large? |
| 646 | */ |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 647 | if ((blk_rq_sectors(req) + blk_rq_sectors(next)) > |
Damien Le Moal | 17007f3 | 2016-07-20 21:40:47 -0600 | [diff] [blame] | 648 | blk_rq_get_max_sectors(req, blk_rq_pos(req))) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 649 | return 0; |
| 650 | |
| 651 | total_phys_segments = req->nr_phys_segments + next->nr_phys_segments; |
FUJITA Tomonori | 8677142 | 2008-10-13 14:19:05 +0200 | [diff] [blame] | 652 | if (blk_phys_contig_segment(q, req->biotail, next->bio)) { |
| 653 | if (req->nr_phys_segments == 1) |
| 654 | req->bio->bi_seg_front_size = seg_size; |
| 655 | if (next->nr_phys_segments == 1) |
| 656 | next->biotail->bi_seg_back_size = seg_size; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 657 | total_phys_segments--; |
FUJITA Tomonori | 8677142 | 2008-10-13 14:19:05 +0200 | [diff] [blame] | 658 | } |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 659 | |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 660 | if (total_phys_segments > queue_max_segments(q)) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 661 | return 0; |
| 662 | |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 663 | if (blk_integrity_merge_rq(q, req, next) == false) |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 664 | return 0; |
| 665 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 666 | /* Merge is OK... */ |
| 667 | req->nr_phys_segments = total_phys_segments; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 668 | return 1; |
| 669 | } |
| 670 | |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 671 | /** |
| 672 | * blk_rq_set_mixed_merge - mark a request as mixed merge |
| 673 | * @rq: request to mark as mixed merge |
| 674 | * |
| 675 | * Description: |
| 676 | * @rq is about to be mixed merged. Make sure the attributes |
| 677 | * which can be mixed are set in each bio and mark @rq as mixed |
| 678 | * merged. |
| 679 | */ |
| 680 | void blk_rq_set_mixed_merge(struct request *rq) |
| 681 | { |
| 682 | unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK; |
| 683 | struct bio *bio; |
| 684 | |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 685 | if (rq->rq_flags & RQF_MIXED_MERGE) |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 686 | return; |
| 687 | |
| 688 | /* |
| 689 | * @rq will no longer represent mixable attributes for all the |
| 690 | * contained bios. It will just track those of the first one. |
| 691 | * Distributes the attributs to each bio. |
| 692 | */ |
| 693 | for (bio = rq->bio; bio; bio = bio->bi_next) { |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 694 | WARN_ON_ONCE((bio->bi_opf & REQ_FAILFAST_MASK) && |
| 695 | (bio->bi_opf & REQ_FAILFAST_MASK) != ff); |
| 696 | bio->bi_opf |= ff; |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 697 | } |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 698 | rq->rq_flags |= RQF_MIXED_MERGE; |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 699 | } |
| 700 | |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 701 | static void blk_account_io_merge(struct request *req) |
| 702 | { |
| 703 | if (blk_do_io_stat(req)) { |
| 704 | struct hd_struct *part; |
| 705 | int cpu; |
| 706 | |
| 707 | cpu = part_stat_lock(); |
Jerome Marchand | 09e099d | 2011-01-05 16:57:38 +0100 | [diff] [blame] | 708 | part = req->part; |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 709 | |
Jens Axboe | d62e26b | 2017-06-30 21:55:08 -0600 | [diff] [blame] | 710 | part_round_stats(req->q, cpu, part); |
| 711 | part_dec_in_flight(req->q, part, rq_data_dir(req)); |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 712 | |
Jens Axboe | 6c23a96 | 2011-01-07 08:43:37 +0100 | [diff] [blame] | 713 | hd_struct_put(part); |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 714 | part_stat_unlock(); |
| 715 | } |
| 716 | } |
Jianchao Wang | 69840466 | 2018-10-27 19:52:14 +0800 | [diff] [blame] | 717 | /* |
| 718 | * Two cases of handling DISCARD merge: |
| 719 | * If max_discard_segments > 1, the driver takes every bio |
| 720 | * as a range and send them to controller together. The ranges |
| 721 | * needn't to be contiguous. |
| 722 | * Otherwise, the bios/requests will be handled as same as |
| 723 | * others which should be contiguous. |
| 724 | */ |
| 725 | static inline bool blk_discard_mergable(struct request *req) |
| 726 | { |
| 727 | if (req_op(req) == REQ_OP_DISCARD && |
| 728 | queue_max_discard_segments(req->q) > 1) |
| 729 | return true; |
| 730 | return false; |
| 731 | } |
| 732 | |
| 733 | enum elv_merge blk_try_req_merge(struct request *req, struct request *next) |
| 734 | { |
| 735 | if (blk_discard_mergable(req)) |
| 736 | return ELEVATOR_DISCARD_MERGE; |
| 737 | else if (blk_rq_pos(req) + blk_rq_sectors(req) == blk_rq_pos(next)) |
| 738 | return ELEVATOR_BACK_MERGE; |
| 739 | |
| 740 | return ELEVATOR_NO_MERGE; |
| 741 | } |
Jerome Marchand | 26308ea | 2009-03-27 10:31:51 +0100 | [diff] [blame] | 742 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 743 | /* |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 744 | * For non-mq, this has to be called with the request spinlock acquired. |
| 745 | * For mq with scheduling, the appropriate queue wide lock should be held. |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 746 | */ |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 747 | static struct request *attempt_merge(struct request_queue *q, |
| 748 | struct request *req, struct request *next) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 749 | { |
Bart Van Assche | 2fff8a9 | 2017-06-20 11:15:45 -0700 | [diff] [blame] | 750 | if (!q->mq_ops) |
| 751 | lockdep_assert_held(q->queue_lock); |
| 752 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 753 | if (!rq_mergeable(req) || !rq_mergeable(next)) |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 754 | return NULL; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 755 | |
Christoph Hellwig | 288dab8 | 2016-06-09 16:00:36 +0200 | [diff] [blame] | 756 | if (req_op(req) != req_op(next)) |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 757 | return NULL; |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 758 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 759 | if (rq_data_dir(req) != rq_data_dir(next) |
| 760 | || req->rq_disk != next->rq_disk |
Jens Axboe | e7e2450 | 2013-10-29 12:11:47 -0600 | [diff] [blame] | 761 | || req_no_special_merge(next)) |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 762 | return NULL; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 763 | |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 764 | if (req_op(req) == REQ_OP_WRITE_SAME && |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 765 | !blk_write_same_mergeable(req->bio, next->bio)) |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 766 | return NULL; |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 767 | |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 768 | /* |
Jens Axboe | cb6934f | 2017-06-27 09:22:02 -0600 | [diff] [blame] | 769 | * Don't allow merge of different write hints, or for a hint with |
| 770 | * non-hint IO. |
| 771 | */ |
| 772 | if (req->write_hint != next->write_hint) |
| 773 | return NULL; |
| 774 | |
| 775 | /* |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 776 | * If we are allowed to merge, then append bio list |
| 777 | * from next to rq and release next. merge_requests_fn |
| 778 | * will have updated segment counts, update sector |
Jens Axboe | 445251d | 2018-02-01 14:01:02 -0700 | [diff] [blame] | 779 | * counts here. Handle DISCARDs separately, as they |
| 780 | * have separate settings. |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 781 | */ |
Jianchao Wang | 69840466 | 2018-10-27 19:52:14 +0800 | [diff] [blame] | 782 | |
| 783 | switch (blk_try_req_merge(req, next)) { |
| 784 | case ELEVATOR_DISCARD_MERGE: |
Jens Axboe | 445251d | 2018-02-01 14:01:02 -0700 | [diff] [blame] | 785 | if (!req_attempt_discard_merge(q, req, next)) |
| 786 | return NULL; |
Jianchao Wang | 69840466 | 2018-10-27 19:52:14 +0800 | [diff] [blame] | 787 | break; |
| 788 | case ELEVATOR_BACK_MERGE: |
| 789 | if (!ll_merge_requests_fn(q, req, next)) |
| 790 | return NULL; |
| 791 | break; |
| 792 | default: |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 793 | return NULL; |
Jianchao Wang | 69840466 | 2018-10-27 19:52:14 +0800 | [diff] [blame] | 794 | } |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 795 | |
| 796 | /* |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 797 | * If failfast settings disagree or any of the two is already |
| 798 | * a mixed merge, mark both as mixed before proceeding. This |
| 799 | * makes sure that all involved bios have mixable attributes |
| 800 | * set properly. |
| 801 | */ |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 802 | if (((req->rq_flags | next->rq_flags) & RQF_MIXED_MERGE) || |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 803 | (req->cmd_flags & REQ_FAILFAST_MASK) != |
| 804 | (next->cmd_flags & REQ_FAILFAST_MASK)) { |
| 805 | blk_rq_set_mixed_merge(req); |
| 806 | blk_rq_set_mixed_merge(next); |
| 807 | } |
| 808 | |
| 809 | /* |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 810 | * At this point we have either done a back merge or front merge. We |
| 811 | * need the smaller start_time_ns of the merged requests to be the |
| 812 | * current request for accounting purposes. |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 813 | */ |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 814 | if (next->start_time_ns < req->start_time_ns) |
| 815 | req->start_time_ns = next->start_time_ns; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 816 | |
| 817 | req->biotail->bi_next = next->bio; |
| 818 | req->biotail = next->biotail; |
| 819 | |
Tejun Heo | a2dec7b | 2009-05-07 22:24:44 +0900 | [diff] [blame] | 820 | req->__data_len += blk_rq_bytes(next); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 821 | |
Jens Axboe | 445251d | 2018-02-01 14:01:02 -0700 | [diff] [blame] | 822 | if (req_op(req) != REQ_OP_DISCARD) |
| 823 | elv_merge_requests(q, req, next); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 824 | |
Jerome Marchand | 42dad76 | 2009-04-22 14:01:49 +0200 | [diff] [blame] | 825 | /* |
| 826 | * 'next' is going away, so update stats accordingly |
| 827 | */ |
| 828 | blk_account_io_merge(next); |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 829 | |
| 830 | req->ioprio = ioprio_best(req->ioprio, next->ioprio); |
Jens Axboe | ab780f1 | 2008-08-26 10:25:02 +0200 | [diff] [blame] | 831 | if (blk_rq_cpu_valid(next)) |
| 832 | req->cpu = next->cpu; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 833 | |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 834 | /* |
| 835 | * ownership of bio passed from next to req, return 'next' for |
| 836 | * the caller to free |
| 837 | */ |
Boaz Harrosh | 1cd96c2 | 2009-03-24 12:35:07 +0100 | [diff] [blame] | 838 | next->bio = NULL; |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 839 | return next; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 840 | } |
| 841 | |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 842 | struct request *attempt_back_merge(struct request_queue *q, struct request *rq) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 843 | { |
| 844 | struct request *next = elv_latter_request(q, rq); |
| 845 | |
| 846 | if (next) |
| 847 | return attempt_merge(q, rq, next); |
| 848 | |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 849 | return NULL; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 850 | } |
| 851 | |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 852 | struct request *attempt_front_merge(struct request_queue *q, struct request *rq) |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 853 | { |
| 854 | struct request *prev = elv_former_request(q, rq); |
| 855 | |
| 856 | if (prev) |
| 857 | return attempt_merge(q, prev, rq); |
| 858 | |
Jens Axboe | b973cb7 | 2017-02-02 08:54:40 -0700 | [diff] [blame] | 859 | return NULL; |
Jens Axboe | d6d4819 | 2008-01-29 14:04:06 +0100 | [diff] [blame] | 860 | } |
Jens Axboe | 5e84ea3 | 2011-03-21 10:14:27 +0100 | [diff] [blame] | 861 | |
| 862 | int blk_attempt_req_merge(struct request_queue *q, struct request *rq, |
| 863 | struct request *next) |
| 864 | { |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 865 | struct elevator_queue *e = q->elevator; |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 866 | struct request *free; |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 867 | |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 868 | if (!e->uses_mq && e->type->ops.sq.elevator_allow_rq_merge_fn) |
Jens Axboe | c51ca6c | 2016-12-10 15:13:59 -0700 | [diff] [blame] | 869 | if (!e->type->ops.sq.elevator_allow_rq_merge_fn(q, rq, next)) |
Tahsin Erdogan | 72ef799 | 2016-07-07 11:48:22 -0700 | [diff] [blame] | 870 | return 0; |
| 871 | |
Jens Axboe | e4d750c | 2017-02-03 09:48:28 -0700 | [diff] [blame] | 872 | free = attempt_merge(q, rq, next); |
| 873 | if (free) { |
| 874 | __blk_put_request(q, free); |
| 875 | return 1; |
| 876 | } |
| 877 | |
| 878 | return 0; |
Jens Axboe | 5e84ea3 | 2011-03-21 10:14:27 +0100 | [diff] [blame] | 879 | } |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 880 | |
| 881 | bool blk_rq_merge_ok(struct request *rq, struct bio *bio) |
| 882 | { |
Martin K. Petersen | e2a60da | 2012-09-18 12:19:25 -0400 | [diff] [blame] | 883 | if (!rq_mergeable(rq) || !bio_mergeable(bio)) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 884 | return false; |
| 885 | |
Christoph Hellwig | 288dab8 | 2016-06-09 16:00:36 +0200 | [diff] [blame] | 886 | if (req_op(rq) != bio_op(bio)) |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 887 | return false; |
| 888 | |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 889 | /* different data direction or already started, don't merge */ |
| 890 | if (bio_data_dir(bio) != rq_data_dir(rq)) |
| 891 | return false; |
| 892 | |
| 893 | /* must be same device and not a special request */ |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 894 | if (rq->rq_disk != bio->bi_disk || req_no_special_merge(rq)) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 895 | return false; |
| 896 | |
| 897 | /* only merge integrity protected bio into ditto rq */ |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 898 | if (blk_integrity_merge_bio(rq->q, rq, bio) == false) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 899 | return false; |
| 900 | |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 901 | /* must be using the same buffer */ |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 902 | if (req_op(rq) == REQ_OP_WRITE_SAME && |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 903 | !blk_write_same_mergeable(rq->bio, bio)) |
| 904 | return false; |
| 905 | |
Jens Axboe | cb6934f | 2017-06-27 09:22:02 -0600 | [diff] [blame] | 906 | /* |
| 907 | * Don't allow merge of different write hints, or for a hint with |
| 908 | * non-hint IO. |
| 909 | */ |
| 910 | if (rq->write_hint != bio->bi_write_hint) |
| 911 | return false; |
| 912 | |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 913 | return true; |
| 914 | } |
| 915 | |
Christoph Hellwig | 34fe7c0 | 2017-02-08 14:46:48 +0100 | [diff] [blame] | 916 | enum elv_merge blk_try_merge(struct request *rq, struct bio *bio) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 917 | { |
Jianchao Wang | 69840466 | 2018-10-27 19:52:14 +0800 | [diff] [blame] | 918 | if (blk_discard_mergable(rq)) |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 919 | return ELEVATOR_DISCARD_MERGE; |
| 920 | else if (blk_rq_pos(rq) + blk_rq_sectors(rq) == bio->bi_iter.bi_sector) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 921 | return ELEVATOR_BACK_MERGE; |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 922 | else if (blk_rq_pos(rq) - bio_sectors(bio) == bio->bi_iter.bi_sector) |
Tejun Heo | 050c8ea | 2012-02-08 09:19:38 +0100 | [diff] [blame] | 923 | return ELEVATOR_FRONT_MERGE; |
| 924 | return ELEVATOR_NO_MERGE; |
| 925 | } |