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