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