blob: 4de34a332c9fdd7ba5a95632e15885032d13d065 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jens Axboed6d48192008-01-29 14:04:06 +01002/*
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>
Christoph Hellwigfe45e632021-09-20 14:33:27 +02009#include <linux/blk-integrity.h>
Jens Axboed6d48192008-01-29 14:04:06 +010010#include <linux/scatterlist.h>
Christoph Hellwig82d981d2021-11-23 19:53:12 +010011#include <linux/part_stat.h>
Jens Axboed6d48192008-01-29 14:04:06 +010012
Mike Krinkincda22642015-12-03 17:32:30 +030013#include <trace/events/block.h>
14
Jens Axboed6d48192008-01-29 14:04:06 +010015#include "blk.h"
Christoph Hellwig2aa77452021-11-23 19:53:08 +010016#include "blk-mq-sched.h"
Baolin Wang8e756372020-08-28 10:52:54 +080017#include "blk-rq-qos.h"
Jens Axboea7b36ee2021-10-05 09:11:56 -060018#include "blk-throttle.h"
Jens Axboed6d48192008-01-29 14:04:06 +010019
Christoph Hellwigff18d772021-10-12 18:18:03 +020020static inline void bio_get_first_bvec(struct bio *bio, struct bio_vec *bv)
21{
22 *bv = mp_bvec_iter_bvec(bio->bi_io_vec, bio->bi_iter);
23}
24
25static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv)
26{
27 struct bvec_iter iter = bio->bi_iter;
28 int idx;
29
30 bio_get_first_bvec(bio, bv);
31 if (bv->bv_len == bio->bi_iter.bi_size)
32 return; /* this bio only has a single bvec */
33
34 bio_advance_iter(bio, &iter, iter.bi_size);
35
36 if (!iter.bi_bvec_done)
37 idx = iter.bi_idx - 1;
38 else /* in the middle of bvec */
39 idx = iter.bi_idx;
40
41 *bv = bio->bi_io_vec[idx];
42
43 /*
44 * iter.bi_bvec_done records actual length of the last bvec
45 * if this bio ends in the middle of one io vector
46 */
47 if (iter.bi_bvec_done)
48 bv->bv_len = iter.bi_bvec_done;
49}
50
Christoph Hellwige9907002018-09-24 09:43:48 +020051static inline bool bio_will_gap(struct request_queue *q,
52 struct request *prev_rq, struct bio *prev, struct bio *next)
53{
54 struct bio_vec pb, nb;
55
56 if (!bio_has_data(prev) || !queue_virt_boundary(q))
57 return false;
58
59 /*
60 * Don't merge if the 1st bio starts with non-zero offset, otherwise it
61 * is quite difficult to respect the sg gap limit. We work hard to
62 * merge a huge number of small single bios in case of mkfs.
63 */
64 if (prev_rq)
65 bio_get_first_bvec(prev_rq->bio, &pb);
66 else
67 bio_get_first_bvec(prev, &pb);
Johannes Thumshirndf376b22018-11-07 14:58:14 +010068 if (pb.bv_offset & queue_virt_boundary(q))
Christoph Hellwige9907002018-09-24 09:43:48 +020069 return true;
70
71 /*
72 * We don't need to worry about the situation that the merged segment
73 * ends in unaligned virt boundary:
74 *
75 * - if 'pb' ends aligned, the merged segment ends aligned
76 * - if 'pb' ends unaligned, the next bio must include
77 * one single bvec of 'nb', otherwise the 'nb' can't
78 * merge with 'pb'
79 */
80 bio_get_last_bvec(prev, &pb);
81 bio_get_first_bvec(next, &nb);
Christoph Hellwig200a9af2019-05-21 09:01:42 +020082 if (biovec_phys_mergeable(q, &pb, &nb))
Christoph Hellwige9907002018-09-24 09:43:48 +020083 return false;
84 return __bvec_gap_to_prev(q, &pb, nb.bv_offset);
85}
86
87static inline bool req_gap_back_merge(struct request *req, struct bio *bio)
88{
89 return bio_will_gap(req->q, req, req->biotail, bio);
90}
91
92static inline bool req_gap_front_merge(struct request *req, struct bio *bio)
93{
94 return bio_will_gap(req->q, NULL, bio, req->bio);
95}
96
Kent Overstreet54efd502015-04-23 22:37:18 -070097static struct bio *blk_bio_discard_split(struct request_queue *q,
98 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +080099 struct bio_set *bs,
100 unsigned *nsegs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700101{
102 unsigned int max_discard_sectors, granularity;
103 int alignment;
104 sector_t tmp;
105 unsigned split_sectors;
106
Ming Leibdced432015-10-20 23:13:52 +0800107 *nsegs = 1;
108
Kent Overstreet54efd502015-04-23 22:37:18 -0700109 /* Zero-sector (unknown) and one-sector granularities are the same. */
110 granularity = max(q->limits.discard_granularity >> 9, 1U);
111
Ming Lei1adfc5e2018-10-29 20:57:17 +0800112 max_discard_sectors = min(q->limits.max_discard_sectors,
113 bio_allowed_max_sectors(q));
Kent Overstreet54efd502015-04-23 22:37:18 -0700114 max_discard_sectors -= max_discard_sectors % granularity;
115
116 if (unlikely(!max_discard_sectors)) {
117 /* XXX: warn */
118 return NULL;
119 }
120
121 if (bio_sectors(bio) <= max_discard_sectors)
122 return NULL;
123
124 split_sectors = max_discard_sectors;
125
126 /*
127 * If the next starting sector would be misaligned, stop the discard at
128 * the previous aligned sector.
129 */
130 alignment = (q->limits.discard_alignment >> 9) % granularity;
131
132 tmp = bio->bi_iter.bi_sector + split_sectors - alignment;
133 tmp = sector_div(tmp, granularity);
134
135 if (split_sectors > tmp)
136 split_sectors -= tmp;
137
138 return bio_split(bio, split_sectors, GFP_NOIO, bs);
139}
140
Christoph Hellwig885fa132017-04-05 19:21:01 +0200141static struct bio *blk_bio_write_zeroes_split(struct request_queue *q,
142 struct bio *bio, struct bio_set *bs, unsigned *nsegs)
143{
Christoph Hellwigd665e122019-07-03 05:24:35 -0700144 *nsegs = 0;
Christoph Hellwig885fa132017-04-05 19:21:01 +0200145
146 if (!q->limits.max_write_zeroes_sectors)
147 return NULL;
148
149 if (bio_sectors(bio) <= q->limits.max_write_zeroes_sectors)
150 return NULL;
151
152 return bio_split(bio, q->limits.max_write_zeroes_sectors, GFP_NOIO, bs);
153}
154
Kent Overstreet54efd502015-04-23 22:37:18 -0700155static struct bio *blk_bio_write_same_split(struct request_queue *q,
156 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +0800157 struct bio_set *bs,
158 unsigned *nsegs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700159{
Ming Leibdced432015-10-20 23:13:52 +0800160 *nsegs = 1;
161
Kent Overstreet54efd502015-04-23 22:37:18 -0700162 if (!q->limits.max_write_same_sectors)
163 return NULL;
164
165 if (bio_sectors(bio) <= q->limits.max_write_same_sectors)
166 return NULL;
167
168 return bio_split(bio, q->limits.max_write_same_sectors, GFP_NOIO, bs);
169}
170
Bart Van Assche9cc51692019-08-01 15:50:44 -0700171/*
172 * Return the maximum number of sectors from the start of a bio that may be
173 * submitted as a single request to a block device. If enough sectors remain,
174 * align the end to the physical block size. Otherwise align the end to the
175 * logical block size. This approach minimizes the number of non-aligned
176 * requests that are submitted to a block device if the start of a bio is not
177 * aligned to a physical block boundary.
178 */
Ming Leid0e5fbb2016-01-23 08:05:33 +0800179static inline unsigned get_max_io_size(struct request_queue *q,
180 struct bio *bio)
181{
Mike Snitzer3ee16db2020-11-30 10:57:43 -0500182 unsigned sectors = blk_max_size_offset(q, bio->bi_iter.bi_sector, 0);
Bart Van Assche9cc51692019-08-01 15:50:44 -0700183 unsigned max_sectors = sectors;
184 unsigned pbs = queue_physical_block_size(q) >> SECTOR_SHIFT;
185 unsigned lbs = queue_logical_block_size(q) >> SECTOR_SHIFT;
186 unsigned start_offset = bio->bi_iter.bi_sector & (pbs - 1);
Ming Leid0e5fbb2016-01-23 08:05:33 +0800187
Bart Van Assche9cc51692019-08-01 15:50:44 -0700188 max_sectors += start_offset;
189 max_sectors &= ~(pbs - 1);
190 if (max_sectors > start_offset)
191 return max_sectors - start_offset;
Ming Leid0e5fbb2016-01-23 08:05:33 +0800192
Keith Busche4b469c2020-08-06 14:58:37 -0700193 return sectors & ~(lbs - 1);
Ming Leid0e5fbb2016-01-23 08:05:33 +0800194}
195
Ming Lei429120f2019-12-29 10:32:30 +0800196static inline unsigned get_max_segment_size(const struct request_queue *q,
197 struct page *start_page,
198 unsigned long offset)
Ming Leidcebd752019-02-15 19:13:12 +0800199{
200 unsigned long mask = queue_segment_boundary(q);
201
Ming Lei429120f2019-12-29 10:32:30 +0800202 offset = mask & (page_to_phys(start_page) + offset);
Ming Lei4a2f7042020-01-11 20:57:43 +0800203
204 /*
205 * overflow may be triggered in case of zero page physical address
206 * on 32bit arch, use queue's max segment size when that happens.
207 */
208 return min_not_zero(mask - offset + 1,
209 (unsigned long)queue_max_segment_size(q));
Ming Leidcebd752019-02-15 19:13:12 +0800210}
211
Bart Van Assche708b25b2019-08-01 15:50:43 -0700212/**
213 * bvec_split_segs - verify whether or not a bvec should be split in the middle
214 * @q: [in] request queue associated with the bio associated with @bv
215 * @bv: [in] bvec to examine
216 * @nsegs: [in,out] Number of segments in the bio being built. Incremented
217 * by the number of segments from @bv that may be appended to that
218 * bio without exceeding @max_segs
219 * @sectors: [in,out] Number of sectors in the bio being built. Incremented
220 * by the number of sectors from @bv that may be appended to that
221 * bio without exceeding @max_sectors
222 * @max_segs: [in] upper bound for *@nsegs
223 * @max_sectors: [in] upper bound for *@sectors
224 *
225 * When splitting a bio, it can happen that a bvec is encountered that is too
226 * big to fit in a single segment and hence that it has to be split in the
227 * middle. This function verifies whether or not that should happen. The value
228 * %true is returned if and only if appending the entire @bv to a bio with
229 * *@nsegs segments and *@sectors sectors would make that bio unacceptable for
230 * the block driver.
Ming Leidcebd752019-02-15 19:13:12 +0800231 */
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -0700232static bool bvec_split_segs(const struct request_queue *q,
233 const struct bio_vec *bv, unsigned *nsegs,
Bart Van Assche708b25b2019-08-01 15:50:43 -0700234 unsigned *sectors, unsigned max_segs,
235 unsigned max_sectors)
Ming Leidcebd752019-02-15 19:13:12 +0800236{
Bart Van Assche708b25b2019-08-01 15:50:43 -0700237 unsigned max_len = (min(max_sectors, UINT_MAX >> 9) - *sectors) << 9;
238 unsigned len = min(bv->bv_len, max_len);
Ming Leidcebd752019-02-15 19:13:12 +0800239 unsigned total_len = 0;
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700240 unsigned seg_size = 0;
Ming Leidcebd752019-02-15 19:13:12 +0800241
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700242 while (len && *nsegs < max_segs) {
Ming Lei429120f2019-12-29 10:32:30 +0800243 seg_size = get_max_segment_size(q, bv->bv_page,
244 bv->bv_offset + total_len);
Ming Leidcebd752019-02-15 19:13:12 +0800245 seg_size = min(seg_size, len);
246
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700247 (*nsegs)++;
Ming Leidcebd752019-02-15 19:13:12 +0800248 total_len += seg_size;
249 len -= seg_size;
250
251 if ((bv->bv_offset + total_len) & queue_virt_boundary(q))
252 break;
253 }
254
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700255 *sectors += total_len >> 9;
Ming Leidcebd752019-02-15 19:13:12 +0800256
Bart Van Assche708b25b2019-08-01 15:50:43 -0700257 /* tell the caller to split the bvec if it is too big to fit */
258 return len > 0 || bv->bv_len > max_len;
Ming Leidcebd752019-02-15 19:13:12 +0800259}
260
Bart Van Asschedad77582019-08-01 15:50:41 -0700261/**
262 * blk_bio_segment_split - split a bio in two bios
263 * @q: [in] request queue pointer
264 * @bio: [in] bio to be split
265 * @bs: [in] bio set to allocate the clone from
266 * @segs: [out] number of segments in the bio with the first half of the sectors
267 *
268 * Clone @bio, update the bi_iter of the clone to represent the first sectors
269 * of @bio and update @bio->bi_iter to represent the remaining sectors. The
270 * following is guaranteed for the cloned bio:
271 * - That it has at most get_max_io_size(@q, @bio) sectors.
272 * - That it has at most queue_max_segments(@q) segments.
273 *
274 * Except for discard requests the cloned bio will point at the bi_io_vec of
275 * the original bio. It is the responsibility of the caller to ensure that the
276 * original bio is not freed before the cloned bio. The caller is also
277 * responsible for ensuring that @bs is only destroyed after processing of the
278 * split bio has finished.
279 */
Kent Overstreet54efd502015-04-23 22:37:18 -0700280static struct bio *blk_bio_segment_split(struct request_queue *q,
281 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +0800282 struct bio_set *bs,
283 unsigned *segs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700284{
Jens Axboe5014c312015-09-02 16:46:02 -0600285 struct bio_vec bv, bvprv, *bvprvp = NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700286 struct bvec_iter iter;
Christoph Hellwig68698752019-05-21 09:01:43 +0200287 unsigned nsegs = 0, sectors = 0;
Ming Leid0e5fbb2016-01-23 08:05:33 +0800288 const unsigned max_sectors = get_max_io_size(q, bio);
Ming Lei05b700b2019-03-03 21:17:48 +0800289 const unsigned max_segs = queue_max_segments(q);
Kent Overstreet54efd502015-04-23 22:37:18 -0700290
Ming Leidcebd752019-02-15 19:13:12 +0800291 bio_for_each_bvec(bv, bio, iter) {
Kent Overstreet54efd502015-04-23 22:37:18 -0700292 /*
293 * If the queue doesn't support SG gaps and adding this
294 * offset would create a gap, disallow it.
295 */
Jens Axboe5014c312015-09-02 16:46:02 -0600296 if (bvprvp && bvec_gap_to_prev(q, bvprvp, bv.bv_offset))
Kent Overstreet54efd502015-04-23 22:37:18 -0700297 goto split;
298
Bart Van Assche708b25b2019-08-01 15:50:43 -0700299 if (nsegs < max_segs &&
300 sectors + (bv.bv_len >> 9) <= max_sectors &&
301 bv.bv_offset + bv.bv_len <= PAGE_SIZE) {
302 nsegs++;
303 sectors += bv.bv_len >> 9;
304 } else if (bvec_split_segs(q, &bv, &nsegs, &sectors, max_segs,
305 max_sectors)) {
Ming Leicf8c0c62017-12-18 20:22:16 +0800306 goto split;
Keith Busche36f6202016-01-12 15:08:39 -0700307 }
308
Kent Overstreet54efd502015-04-23 22:37:18 -0700309 bvprv = bv;
Ming Lei578270b2015-11-24 10:35:29 +0800310 bvprvp = &bvprv;
Kent Overstreet54efd502015-04-23 22:37:18 -0700311 }
312
Christoph Hellwigd6270652019-06-06 12:29:03 +0200313 *segs = nsegs;
314 return NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700315split:
Ming Leibdced432015-10-20 23:13:52 +0800316 *segs = nsegs;
Jeffle Xucc29e1b2020-11-26 17:18:52 +0800317
318 /*
319 * Bio splitting may cause subtle trouble such as hang when doing sync
320 * iopoll in direct IO routine. Given performance gain of iopoll for
321 * big IO can be trival, disable iopoll when split needed.
322 */
Christoph Hellwig6ce913f2021-10-12 13:12:21 +0200323 bio_clear_polled(bio);
Christoph Hellwigd6270652019-06-06 12:29:03 +0200324 return bio_split(bio, sectors, GFP_NOIO, bs);
Kent Overstreet54efd502015-04-23 22:37:18 -0700325}
326
Bart Van Asschedad77582019-08-01 15:50:41 -0700327/**
328 * __blk_queue_split - split a bio and submit the second half
Jens Axboeabd45c12021-10-13 12:43:41 -0600329 * @q: [in] request_queue new bio is being queued at
Bart Van Asschedad77582019-08-01 15:50:41 -0700330 * @bio: [in, out] bio to be split
331 * @nr_segs: [out] number of segments in the first bio
332 *
333 * Split a bio into two bios, chain the two bios, submit the second half and
334 * store a pointer to the first half in *@bio. If the second bio is still too
335 * big it will be split by a recursive call to this function. Since this
Christoph Hellwig309dca302021-01-24 11:02:34 +0100336 * function may allocate a new bio from q->bio_split, it is the responsibility
337 * of the caller to ensure that q->bio_split is only released after processing
338 * of the split bio has finished.
Bart Van Asschedad77582019-08-01 15:50:41 -0700339 */
Jens Axboeabd45c12021-10-13 12:43:41 -0600340void __blk_queue_split(struct request_queue *q, struct bio **bio,
341 unsigned int *nr_segs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700342{
Christoph Hellwigfa532282019-11-04 10:05:43 -0800343 struct bio *split = NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700344
Adrian Hunter7afafc82016-08-16 10:59:35 +0300345 switch (bio_op(*bio)) {
346 case REQ_OP_DISCARD:
347 case REQ_OP_SECURE_ERASE:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200348 split = blk_bio_discard_split(q, *bio, &q->bio_split, nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300349 break;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800350 case REQ_OP_WRITE_ZEROES:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200351 split = blk_bio_write_zeroes_split(q, *bio, &q->bio_split,
352 nr_segs);
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800353 break;
Adrian Hunter7afafc82016-08-16 10:59:35 +0300354 case REQ_OP_WRITE_SAME:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200355 split = blk_bio_write_same_split(q, *bio, &q->bio_split,
356 nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300357 break;
358 default:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200359 split = blk_bio_segment_split(q, *bio, &q->bio_split, nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300360 break;
361 }
Ming Leibdced432015-10-20 23:13:52 +0800362
Kent Overstreet54efd502015-04-23 22:37:18 -0700363 if (split) {
Ming Lei6ac45ae2015-10-20 23:13:53 +0800364 /* there isn't chance to merge the splitted bio */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600365 split->bi_opf |= REQ_NOMERGE;
Ming Lei6ac45ae2015-10-20 23:13:53 +0800366
Kent Overstreet54efd502015-04-23 22:37:18 -0700367 bio_chain(split, *bio);
Christoph Hellwigeb6f7f72020-12-03 17:21:37 +0100368 trace_block_split(split, (*bio)->bi_iter.bi_sector);
Christoph Hellwiged00aab2020-07-01 10:59:44 +0200369 submit_bio_noacct(*bio);
Kent Overstreet54efd502015-04-23 22:37:18 -0700370 *bio = split;
Chunguang Xu4f1e9632021-08-02 11:51:56 +0800371
372 blk_throtl_charge_bio_split(*bio);
Kent Overstreet54efd502015-04-23 22:37:18 -0700373 }
374}
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200375
Bart Van Asschedad77582019-08-01 15:50:41 -0700376/**
377 * blk_queue_split - split a bio and submit the second half
Bart Van Asschedad77582019-08-01 15:50:41 -0700378 * @bio: [in, out] bio to be split
379 *
380 * Split a bio into two bios, chains the two bios, submit the second half and
381 * store a pointer to the first half in *@bio. Since this function may allocate
Christoph Hellwig309dca302021-01-24 11:02:34 +0100382 * a new bio from q->bio_split, it is the responsibility of the caller to ensure
383 * that q->bio_split is only released after processing of the split bio has
384 * finished.
Bart Van Asschedad77582019-08-01 15:50:41 -0700385 */
Christoph Hellwigf695ca32020-07-01 10:59:39 +0200386void blk_queue_split(struct bio **bio)
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200387{
Pavel Begunkov859897c2021-10-19 22:24:11 +0100388 struct request_queue *q = bdev_get_queue((*bio)->bi_bdev);
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200389 unsigned int nr_segs;
390
Jens Axboeabd45c12021-10-13 12:43:41 -0600391 if (blk_may_split(q, *bio))
392 __blk_queue_split(q, bio, &nr_segs);
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200393}
Kent Overstreet54efd502015-04-23 22:37:18 -0700394EXPORT_SYMBOL(blk_queue_split);
395
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200396unsigned int blk_recalc_rq_segments(struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100397{
Christoph Hellwig68698752019-05-21 09:01:43 +0200398 unsigned int nr_phys_segs = 0;
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700399 unsigned int nr_sectors = 0;
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200400 struct req_iterator iter;
Christoph Hellwig68698752019-05-21 09:01:43 +0200401 struct bio_vec bv;
Jens Axboed6d48192008-01-29 14:04:06 +0100402
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200403 if (!rq->bio)
Jens Axboe1e428072009-02-23 09:03:10 +0100404 return 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100405
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200406 switch (bio_op(rq->bio)) {
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800407 case REQ_OP_DISCARD:
408 case REQ_OP_SECURE_ERASE:
David Jefferya958937f2021-02-11 09:38:07 -0500409 if (queue_max_discard_segments(rq->q) > 1) {
410 struct bio *bio = rq->bio;
411
412 for_each_bio(bio)
413 nr_phys_segs++;
414 return nr_phys_segs;
415 }
416 return 1;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800417 case REQ_OP_WRITE_ZEROES:
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700418 return 0;
419 case REQ_OP_WRITE_SAME:
Kent Overstreet5cb88502014-02-07 13:53:46 -0700420 return 1;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800421 }
Kent Overstreet5cb88502014-02-07 13:53:46 -0700422
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200423 rq_for_each_bvec(bv, rq, iter)
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700424 bvec_split_segs(rq->q, &bv, &nr_phys_segs, &nr_sectors,
Bart Van Assche708b25b2019-08-01 15:50:43 -0700425 UINT_MAX, UINT_MAX);
Jens Axboe1e428072009-02-23 09:03:10 +0100426 return nr_phys_segs;
427}
428
Ming Lei48d77272019-02-27 20:40:11 +0800429static inline struct scatterlist *blk_next_sg(struct scatterlist **sg,
Ming Lei862e5a52019-02-15 19:13:13 +0800430 struct scatterlist *sglist)
431{
432 if (!*sg)
433 return sglist;
434
435 /*
436 * If the driver previously mapped a shorter list, we could see a
437 * termination bit prematurely unless it fully inits the sg table
438 * on each mapping. We KNOW that there must be more entries here
439 * or the driver would be buggy, so force clear the termination bit
440 * to avoid doing a full sg_init_table() in drivers for each command.
441 */
442 sg_unmark_end(*sg);
443 return sg_next(*sg);
444}
445
446static unsigned blk_bvec_map_sg(struct request_queue *q,
447 struct bio_vec *bvec, struct scatterlist *sglist,
448 struct scatterlist **sg)
449{
450 unsigned nbytes = bvec->bv_len;
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200451 unsigned nsegs = 0, total = 0;
Ming Lei862e5a52019-02-15 19:13:13 +0800452
453 while (nbytes > 0) {
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200454 unsigned offset = bvec->bv_offset + total;
Ming Lei429120f2019-12-29 10:32:30 +0800455 unsigned len = min(get_max_segment_size(q, bvec->bv_page,
456 offset), nbytes);
Christoph Hellwigf9f76872019-04-19 08:56:24 +0200457 struct page *page = bvec->bv_page;
458
459 /*
460 * Unfortunately a fair number of drivers barf on scatterlists
461 * that have an offset larger than PAGE_SIZE, despite other
462 * subsystems dealing with that invariant just fine. For now
463 * stick to the legacy format where we never present those from
464 * the block layer, but the code below should be removed once
465 * these offenders (mostly MMC/SD drivers) are fixed.
466 */
467 page += (offset >> PAGE_SHIFT);
468 offset &= ~PAGE_MASK;
Ming Lei862e5a52019-02-15 19:13:13 +0800469
470 *sg = blk_next_sg(sg, sglist);
Christoph Hellwigf9f76872019-04-19 08:56:24 +0200471 sg_set_page(*sg, page, len, offset);
Ming Lei862e5a52019-02-15 19:13:13 +0800472
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200473 total += len;
474 nbytes -= len;
Ming Lei862e5a52019-02-15 19:13:13 +0800475 nsegs++;
476 }
477
478 return nsegs;
479}
480
Ming Lei16e3e412019-03-17 18:01:11 +0800481static inline int __blk_bvec_map_sg(struct bio_vec bv,
482 struct scatterlist *sglist, struct scatterlist **sg)
483{
484 *sg = blk_next_sg(sg, sglist);
485 sg_set_page(*sg, bv.bv_page, bv.bv_len, bv.bv_offset);
486 return 1;
487}
488
Ming Leif6970f82019-03-17 18:01:12 +0800489/* only try to merge bvecs into one sg if they are from two bios */
490static inline bool
491__blk_segment_map_sg_merge(struct request_queue *q, struct bio_vec *bvec,
492 struct bio_vec *bvprv, struct scatterlist **sg)
Asias He963ab9e2012-08-02 23:42:03 +0200493{
494
495 int nbytes = bvec->bv_len;
496
Ming Leif6970f82019-03-17 18:01:12 +0800497 if (!*sg)
498 return false;
Asias He963ab9e2012-08-02 23:42:03 +0200499
Ming Leif6970f82019-03-17 18:01:12 +0800500 if ((*sg)->length + nbytes > queue_max_segment_size(q))
501 return false;
502
503 if (!biovec_phys_mergeable(q, bvprv, bvec))
504 return false;
505
506 (*sg)->length += nbytes;
507
508 return true;
Asias He963ab9e2012-08-02 23:42:03 +0200509}
510
Kent Overstreet5cb88502014-02-07 13:53:46 -0700511static int __blk_bios_map_sg(struct request_queue *q, struct bio *bio,
512 struct scatterlist *sglist,
513 struct scatterlist **sg)
514{
Kees Cook3f649ab2020-06-03 13:09:38 -0700515 struct bio_vec bvec, bvprv = { NULL };
Kent Overstreet5cb88502014-02-07 13:53:46 -0700516 struct bvec_iter iter;
Christoph Hellwig38417462018-12-13 16:17:10 +0100517 int nsegs = 0;
Ming Leif6970f82019-03-17 18:01:12 +0800518 bool new_bio = false;
Kent Overstreet5cb88502014-02-07 13:53:46 -0700519
Ming Leif6970f82019-03-17 18:01:12 +0800520 for_each_bio(bio) {
521 bio_for_each_bvec(bvec, bio, iter) {
522 /*
523 * Only try to merge bvecs from two bios given we
524 * have done bio internal merge when adding pages
525 * to bio
526 */
527 if (new_bio &&
528 __blk_segment_map_sg_merge(q, &bvec, &bvprv, sg))
529 goto next_bvec;
530
531 if (bvec.bv_offset + bvec.bv_len <= PAGE_SIZE)
532 nsegs += __blk_bvec_map_sg(bvec, sglist, sg);
533 else
534 nsegs += blk_bvec_map_sg(q, &bvec, sglist, sg);
535 next_bvec:
536 new_bio = false;
537 }
Ming Leib21e11c2019-04-02 10:26:44 +0800538 if (likely(bio->bi_iter.bi_size)) {
539 bvprv = bvec;
540 new_bio = true;
541 }
Ming Leif6970f82019-03-17 18:01:12 +0800542 }
Kent Overstreet5cb88502014-02-07 13:53:46 -0700543
544 return nsegs;
545}
546
Jens Axboed6d48192008-01-29 14:04:06 +0100547/*
548 * map a request to scatterlist, return number of sg entries setup. Caller
549 * must make sure sg can hold rq->nr_phys_segments entries
550 */
Christoph Hellwig89de1502020-04-14 09:42:22 +0200551int __blk_rq_map_sg(struct request_queue *q, struct request *rq,
552 struct scatterlist *sglist, struct scatterlist **last_sg)
Jens Axboed6d48192008-01-29 14:04:06 +0100553{
Kent Overstreet5cb88502014-02-07 13:53:46 -0700554 int nsegs = 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100555
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700556 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200557 nsegs = __blk_bvec_map_sg(rq->special_vec, sglist, last_sg);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700558 else if (rq->bio && bio_op(rq->bio) == REQ_OP_WRITE_SAME)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200559 nsegs = __blk_bvec_map_sg(bio_iovec(rq->bio), sglist, last_sg);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700560 else if (rq->bio)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200561 nsegs = __blk_bios_map_sg(q, rq->bio, sglist, last_sg);
FUJITA Tomonorif18573a2008-04-11 12:56:52 +0200562
Christoph Hellwig89de1502020-04-14 09:42:22 +0200563 if (*last_sg)
564 sg_mark_end(*last_sg);
Jens Axboed6d48192008-01-29 14:04:06 +0100565
Ming Lei12e57f52015-11-24 10:35:31 +0800566 /*
567 * Something must have been wrong if the figured number of
568 * segment is bigger than number of req's physical segments
569 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700570 WARN_ON(nsegs > blk_rq_nr_phys_segments(rq));
Ming Lei12e57f52015-11-24 10:35:31 +0800571
Jens Axboed6d48192008-01-29 14:04:06 +0100572 return nsegs;
573}
Christoph Hellwig89de1502020-04-14 09:42:22 +0200574EXPORT_SYMBOL(__blk_rq_map_sg);
Jens Axboed6d48192008-01-29 14:04:06 +0100575
Ming Lei943b40c2020-08-17 17:52:39 +0800576static inline unsigned int blk_rq_get_max_segments(struct request *rq)
577{
578 if (req_op(rq) == REQ_OP_DISCARD)
579 return queue_max_discard_segments(rq->q);
580 return queue_max_segments(rq->q);
581}
582
Christoph Hellwigbadf7f62021-09-20 14:33:26 +0200583static inline unsigned int blk_rq_get_max_sectors(struct request *rq,
584 sector_t offset)
585{
586 struct request_queue *q = rq->q;
587
588 if (blk_rq_is_passthrough(rq))
589 return q->limits.max_hw_sectors;
590
591 if (!q->limits.chunk_sectors ||
592 req_op(rq) == REQ_OP_DISCARD ||
593 req_op(rq) == REQ_OP_SECURE_ERASE)
594 return blk_queue_get_max_sectors(q, req_op(rq));
595
596 return min(blk_max_size_offset(q, offset, 0),
597 blk_queue_get_max_sectors(q, req_op(rq)));
598}
599
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200600static inline int ll_new_hw_segment(struct request *req, struct bio *bio,
601 unsigned int nr_phys_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100602{
Ming Lei2705dfb2021-06-28 10:33:12 +0800603 if (blk_integrity_merge_bio(req->q, req, bio) == false)
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200604 goto no_merge;
605
Ming Lei2705dfb2021-06-28 10:33:12 +0800606 /* discard request merge won't add new segment */
607 if (req_op(req) == REQ_OP_DISCARD)
608 return 1;
609
610 if (req->nr_phys_segments + nr_phys_segs > blk_rq_get_max_segments(req))
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200611 goto no_merge;
Jens Axboed6d48192008-01-29 14:04:06 +0100612
613 /*
614 * This will form the start of a new hw segment. Bump both
615 * counters.
616 */
Jens Axboed6d48192008-01-29 14:04:06 +0100617 req->nr_phys_segments += nr_phys_segs;
618 return 1;
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200619
620no_merge:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200621 req_set_nomerge(req->q, req);
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200622 return 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100623}
624
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200625int ll_back_merge_fn(struct request *req, struct bio *bio, unsigned int nr_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100626{
Jens Axboe5e7c4272015-09-03 19:28:20 +0300627 if (req_gap_back_merge(req, bio))
628 return 0;
Sagi Grimberg7f39add2015-09-11 09:03:04 -0600629 if (blk_integrity_rq(req) &&
630 integrity_req_gap_back_merge(req, bio))
631 return 0;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000632 if (!bio_crypt_ctx_back_mergeable(req, bio))
633 return 0;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400634 if (blk_rq_sectors(req) + bio_sectors(bio) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600635 blk_rq_get_max_sectors(req, blk_rq_pos(req))) {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200636 req_set_nomerge(req->q, req);
Jens Axboed6d48192008-01-29 14:04:06 +0100637 return 0;
638 }
Jens Axboed6d48192008-01-29 14:04:06 +0100639
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200640 return ll_new_hw_segment(req, bio, nr_segs);
Jens Axboed6d48192008-01-29 14:04:06 +0100641}
642
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200643static int ll_front_merge_fn(struct request *req, struct bio *bio,
644 unsigned int nr_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100645{
Jens Axboe5e7c4272015-09-03 19:28:20 +0300646 if (req_gap_front_merge(req, bio))
647 return 0;
Sagi Grimberg7f39add2015-09-11 09:03:04 -0600648 if (blk_integrity_rq(req) &&
649 integrity_req_gap_front_merge(req, bio))
650 return 0;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000651 if (!bio_crypt_ctx_front_mergeable(req, bio))
652 return 0;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400653 if (blk_rq_sectors(req) + bio_sectors(bio) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600654 blk_rq_get_max_sectors(req, bio->bi_iter.bi_sector)) {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200655 req_set_nomerge(req->q, req);
Jens Axboed6d48192008-01-29 14:04:06 +0100656 return 0;
657 }
Jens Axboed6d48192008-01-29 14:04:06 +0100658
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200659 return ll_new_hw_segment(req, bio, nr_segs);
Jens Axboed6d48192008-01-29 14:04:06 +0100660}
661
Jens Axboe445251d2018-02-01 14:01:02 -0700662static bool req_attempt_discard_merge(struct request_queue *q, struct request *req,
663 struct request *next)
664{
665 unsigned short segments = blk_rq_nr_discard_segments(req);
666
667 if (segments >= queue_max_discard_segments(q))
668 goto no_merge;
669 if (blk_rq_sectors(req) + bio_sectors(next->bio) >
670 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
671 goto no_merge;
672
673 req->nr_phys_segments = segments + blk_rq_nr_discard_segments(next);
674 return true;
675no_merge:
676 req_set_nomerge(q, req);
677 return false;
678}
679
Jens Axboed6d48192008-01-29 14:04:06 +0100680static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
681 struct request *next)
682{
683 int total_phys_segments;
Jens Axboed6d48192008-01-29 14:04:06 +0100684
Jens Axboe5e7c4272015-09-03 19:28:20 +0300685 if (req_gap_back_merge(req, next->bio))
Keith Busch854fbb92015-02-11 08:20:13 -0700686 return 0;
687
Jens Axboed6d48192008-01-29 14:04:06 +0100688 /*
689 * Will it become too large?
690 */
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400691 if ((blk_rq_sectors(req) + blk_rq_sectors(next)) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600692 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
Jens Axboed6d48192008-01-29 14:04:06 +0100693 return 0;
694
695 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
Ming Lei943b40c2020-08-17 17:52:39 +0800696 if (total_phys_segments > blk_rq_get_max_segments(req))
Jens Axboed6d48192008-01-29 14:04:06 +0100697 return 0;
698
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -0400699 if (blk_integrity_merge_rq(q, req, next) == false)
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200700 return 0;
701
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000702 if (!bio_crypt_ctx_merge_rq(req, next))
703 return 0;
704
Jens Axboed6d48192008-01-29 14:04:06 +0100705 /* Merge is OK... */
706 req->nr_phys_segments = total_phys_segments;
Jens Axboed6d48192008-01-29 14:04:06 +0100707 return 1;
708}
709
Tejun Heo80a761f2009-07-03 17:48:17 +0900710/**
711 * blk_rq_set_mixed_merge - mark a request as mixed merge
712 * @rq: request to mark as mixed merge
713 *
714 * Description:
715 * @rq is about to be mixed merged. Make sure the attributes
716 * which can be mixed are set in each bio and mark @rq as mixed
717 * merged.
718 */
719void blk_rq_set_mixed_merge(struct request *rq)
720{
721 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
722 struct bio *bio;
723
Christoph Hellwige8064022016-10-20 15:12:13 +0200724 if (rq->rq_flags & RQF_MIXED_MERGE)
Tejun Heo80a761f2009-07-03 17:48:17 +0900725 return;
726
727 /*
728 * @rq will no longer represent mixable attributes for all the
729 * contained bios. It will just track those of the first one.
730 * Distributes the attributs to each bio.
731 */
732 for (bio = rq->bio; bio; bio = bio->bi_next) {
Jens Axboe1eff9d32016-08-05 15:35:16 -0600733 WARN_ON_ONCE((bio->bi_opf & REQ_FAILFAST_MASK) &&
734 (bio->bi_opf & REQ_FAILFAST_MASK) != ff);
735 bio->bi_opf |= ff;
Tejun Heo80a761f2009-07-03 17:48:17 +0900736 }
Christoph Hellwige8064022016-10-20 15:12:13 +0200737 rq->rq_flags |= RQF_MIXED_MERGE;
Tejun Heo80a761f2009-07-03 17:48:17 +0900738}
739
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200740static void blk_account_io_merge_request(struct request *req)
Jerome Marchand26308ea2009-03-27 10:31:51 +0100741{
742 if (blk_do_io_stat(req)) {
Mike Snitzer112f1582018-12-06 11:41:18 -0500743 part_stat_lock();
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200744 part_stat_inc(req->part, merges[op_stat_group(req_op(req))]);
Jerome Marchand26308ea2009-03-27 10:31:51 +0100745 part_stat_unlock();
746 }
747}
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200748
Eric Biggerse96c0d82018-11-14 17:19:46 -0800749static enum elv_merge blk_try_req_merge(struct request *req,
750 struct request *next)
Jianchao Wang698404662018-10-27 19:52:14 +0800751{
752 if (blk_discard_mergable(req))
753 return ELEVATOR_DISCARD_MERGE;
754 else if (blk_rq_pos(req) + blk_rq_sectors(req) == blk_rq_pos(next))
755 return ELEVATOR_BACK_MERGE;
756
757 return ELEVATOR_NO_MERGE;
758}
Jerome Marchand26308ea2009-03-27 10:31:51 +0100759
Christoph Hellwigbadf7f62021-09-20 14:33:26 +0200760static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b)
761{
762 if (bio_page(a) == bio_page(b) && bio_offset(a) == bio_offset(b))
763 return true;
764 return false;
765}
766
Jens Axboed6d48192008-01-29 14:04:06 +0100767/*
Jens Axboeb973cb72017-02-02 08:54:40 -0700768 * For non-mq, this has to be called with the request spinlock acquired.
769 * For mq with scheduling, the appropriate queue wide lock should be held.
Jens Axboed6d48192008-01-29 14:04:06 +0100770 */
Jens Axboeb973cb72017-02-02 08:54:40 -0700771static struct request *attempt_merge(struct request_queue *q,
772 struct request *req, struct request *next)
Jens Axboed6d48192008-01-29 14:04:06 +0100773{
774 if (!rq_mergeable(req) || !rq_mergeable(next))
Jens Axboeb973cb72017-02-02 08:54:40 -0700775 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100776
Christoph Hellwig288dab82016-06-09 16:00:36 +0200777 if (req_op(req) != req_op(next))
Jens Axboeb973cb72017-02-02 08:54:40 -0700778 return NULL;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400779
Christoph Hellwig79bb1db2021-11-26 13:17:59 +0100780 if (rq_data_dir(req) != rq_data_dir(next))
Jens Axboeb973cb72017-02-02 08:54:40 -0700781 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100782
Mike Christie8fe0d472016-06-05 14:32:15 -0500783 if (req_op(req) == REQ_OP_WRITE_SAME &&
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400784 !blk_write_same_mergeable(req->bio, next->bio))
Jens Axboeb973cb72017-02-02 08:54:40 -0700785 return NULL;
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400786
Jens Axboed6d48192008-01-29 14:04:06 +0100787 /*
Jens Axboecb6934f2017-06-27 09:22:02 -0600788 * Don't allow merge of different write hints, or for a hint with
789 * non-hint IO.
790 */
791 if (req->write_hint != next->write_hint)
792 return NULL;
793
Damien Le Moal668ffc02018-11-20 10:52:37 +0900794 if (req->ioprio != next->ioprio)
795 return NULL;
796
Jens Axboecb6934f2017-06-27 09:22:02 -0600797 /*
Jens Axboed6d48192008-01-29 14:04:06 +0100798 * If we are allowed to merge, then append bio list
799 * from next to rq and release next. merge_requests_fn
800 * will have updated segment counts, update sector
Jens Axboe445251d2018-02-01 14:01:02 -0700801 * counts here. Handle DISCARDs separately, as they
802 * have separate settings.
Jens Axboed6d48192008-01-29 14:04:06 +0100803 */
Jianchao Wang698404662018-10-27 19:52:14 +0800804
805 switch (blk_try_req_merge(req, next)) {
806 case ELEVATOR_DISCARD_MERGE:
Jens Axboe445251d2018-02-01 14:01:02 -0700807 if (!req_attempt_discard_merge(q, req, next))
808 return NULL;
Jianchao Wang698404662018-10-27 19:52:14 +0800809 break;
810 case ELEVATOR_BACK_MERGE:
811 if (!ll_merge_requests_fn(q, req, next))
812 return NULL;
813 break;
814 default:
Jens Axboeb973cb72017-02-02 08:54:40 -0700815 return NULL;
Jianchao Wang698404662018-10-27 19:52:14 +0800816 }
Jens Axboed6d48192008-01-29 14:04:06 +0100817
818 /*
Tejun Heo80a761f2009-07-03 17:48:17 +0900819 * If failfast settings disagree or any of the two is already
820 * a mixed merge, mark both as mixed before proceeding. This
821 * makes sure that all involved bios have mixable attributes
822 * set properly.
823 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200824 if (((req->rq_flags | next->rq_flags) & RQF_MIXED_MERGE) ||
Tejun Heo80a761f2009-07-03 17:48:17 +0900825 (req->cmd_flags & REQ_FAILFAST_MASK) !=
826 (next->cmd_flags & REQ_FAILFAST_MASK)) {
827 blk_rq_set_mixed_merge(req);
828 blk_rq_set_mixed_merge(next);
829 }
830
831 /*
Omar Sandoval522a7772018-05-09 02:08:53 -0700832 * At this point we have either done a back merge or front merge. We
833 * need the smaller start_time_ns of the merged requests to be the
834 * current request for accounting purposes.
Jens Axboed6d48192008-01-29 14:04:06 +0100835 */
Omar Sandoval522a7772018-05-09 02:08:53 -0700836 if (next->start_time_ns < req->start_time_ns)
837 req->start_time_ns = next->start_time_ns;
Jens Axboed6d48192008-01-29 14:04:06 +0100838
839 req->biotail->bi_next = next->bio;
840 req->biotail = next->biotail;
841
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900842 req->__data_len += blk_rq_bytes(next);
Jens Axboed6d48192008-01-29 14:04:06 +0100843
Ming Lei2a5cf352018-12-01 00:38:18 +0800844 if (!blk_discard_mergable(req))
Jens Axboe445251d2018-02-01 14:01:02 -0700845 elv_merge_requests(q, req, next);
Jens Axboed6d48192008-01-29 14:04:06 +0100846
Jerome Marchand42dad762009-04-22 14:01:49 +0200847 /*
848 * 'next' is going away, so update stats accordingly
849 */
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200850 blk_account_io_merge_request(next);
Jens Axboed6d48192008-01-29 14:04:06 +0100851
Christoph Hellwiga54895f2020-12-03 17:21:39 +0100852 trace_block_rq_merge(next);
Jan Karaf3bdc622020-06-17 15:58:23 +0200853
Jens Axboee4d750c2017-02-03 09:48:28 -0700854 /*
855 * ownership of bio passed from next to req, return 'next' for
856 * the caller to free
857 */
Boaz Harrosh1cd96c22009-03-24 12:35:07 +0100858 next->bio = NULL;
Jens Axboeb973cb72017-02-02 08:54:40 -0700859 return next;
Jens Axboed6d48192008-01-29 14:04:06 +0100860}
861
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200862static struct request *attempt_back_merge(struct request_queue *q,
863 struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100864{
865 struct request *next = elv_latter_request(q, rq);
866
867 if (next)
868 return attempt_merge(q, rq, next);
869
Jens Axboeb973cb72017-02-02 08:54:40 -0700870 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100871}
872
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200873static struct request *attempt_front_merge(struct request_queue *q,
874 struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100875{
876 struct request *prev = elv_former_request(q, rq);
877
878 if (prev)
879 return attempt_merge(q, prev, rq);
880
Jens Axboeb973cb72017-02-02 08:54:40 -0700881 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100882}
Jens Axboe5e84ea32011-03-21 10:14:27 +0100883
Jan Karafd2ef392021-06-23 11:36:34 +0200884/*
885 * Try to merge 'next' into 'rq'. Return true if the merge happened, false
886 * otherwise. The caller is responsible for freeing 'next' if the merge
887 * happened.
888 */
889bool blk_attempt_req_merge(struct request_queue *q, struct request *rq,
890 struct request *next)
Jens Axboe5e84ea32011-03-21 10:14:27 +0100891{
Jan Karafd2ef392021-06-23 11:36:34 +0200892 return attempt_merge(q, rq, next);
Jens Axboe5e84ea32011-03-21 10:14:27 +0100893}
Tejun Heo050c8ea2012-02-08 09:19:38 +0100894
895bool blk_rq_merge_ok(struct request *rq, struct bio *bio)
896{
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400897 if (!rq_mergeable(rq) || !bio_mergeable(bio))
Tejun Heo050c8ea2012-02-08 09:19:38 +0100898 return false;
899
Christoph Hellwig288dab82016-06-09 16:00:36 +0200900 if (req_op(rq) != bio_op(bio))
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400901 return false;
902
Tejun Heo050c8ea2012-02-08 09:19:38 +0100903 /* different data direction or already started, don't merge */
904 if (bio_data_dir(bio) != rq_data_dir(rq))
905 return false;
906
Tejun Heo050c8ea2012-02-08 09:19:38 +0100907 /* only merge integrity protected bio into ditto rq */
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -0400908 if (blk_integrity_merge_bio(rq->q, rq, bio) == false)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100909 return false;
910
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000911 /* Only merge if the crypt contexts are compatible */
912 if (!bio_crypt_rq_ctx_compatible(rq, bio))
913 return false;
914
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400915 /* must be using the same buffer */
Mike Christie8fe0d472016-06-05 14:32:15 -0500916 if (req_op(rq) == REQ_OP_WRITE_SAME &&
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400917 !blk_write_same_mergeable(rq->bio, bio))
918 return false;
919
Jens Axboecb6934f2017-06-27 09:22:02 -0600920 /*
921 * Don't allow merge of different write hints, or for a hint with
922 * non-hint IO.
923 */
924 if (rq->write_hint != bio->bi_write_hint)
925 return false;
926
Damien Le Moal668ffc02018-11-20 10:52:37 +0900927 if (rq->ioprio != bio_prio(bio))
928 return false;
929
Tejun Heo050c8ea2012-02-08 09:19:38 +0100930 return true;
931}
932
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100933enum elv_merge blk_try_merge(struct request *rq, struct bio *bio)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100934{
Jianchao Wang698404662018-10-27 19:52:14 +0800935 if (blk_discard_mergable(rq))
Christoph Hellwig1e739732017-02-08 14:46:49 +0100936 return ELEVATOR_DISCARD_MERGE;
937 else if (blk_rq_pos(rq) + blk_rq_sectors(rq) == bio->bi_iter.bi_sector)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100938 return ELEVATOR_BACK_MERGE;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700939 else if (blk_rq_pos(rq) - bio_sectors(bio) == bio->bi_iter.bi_sector)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100940 return ELEVATOR_FRONT_MERGE;
941 return ELEVATOR_NO_MERGE;
942}
Baolin Wang8e756372020-08-28 10:52:54 +0800943
944static void blk_account_io_merge_bio(struct request *req)
945{
946 if (!blk_do_io_stat(req))
947 return;
948
949 part_stat_lock();
950 part_stat_inc(req->part, merges[op_stat_group(req_op(req))]);
951 part_stat_unlock();
952}
953
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200954enum bio_merge_status {
955 BIO_MERGE_OK,
956 BIO_MERGE_NONE,
957 BIO_MERGE_FAILED,
958};
959
960static enum bio_merge_status bio_attempt_back_merge(struct request *req,
961 struct bio *bio, unsigned int nr_segs)
Baolin Wang8e756372020-08-28 10:52:54 +0800962{
963 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
964
965 if (!ll_back_merge_fn(req, bio, nr_segs))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800966 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +0800967
Christoph Hellwige8a676d2020-12-03 17:21:36 +0100968 trace_block_bio_backmerge(bio);
Baolin Wang8e756372020-08-28 10:52:54 +0800969 rq_qos_merge(req->q, req, bio);
970
971 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
972 blk_rq_set_mixed_merge(req);
973
974 req->biotail->bi_next = bio;
975 req->biotail = bio;
976 req->__data_len += bio->bi_iter.bi_size;
977
978 bio_crypt_free_ctx(bio);
979
980 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800981 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +0800982}
983
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200984static enum bio_merge_status bio_attempt_front_merge(struct request *req,
985 struct bio *bio, unsigned int nr_segs)
Baolin Wang8e756372020-08-28 10:52:54 +0800986{
987 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
988
989 if (!ll_front_merge_fn(req, bio, nr_segs))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800990 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +0800991
Christoph Hellwige8a676d2020-12-03 17:21:36 +0100992 trace_block_bio_frontmerge(bio);
Baolin Wang8e756372020-08-28 10:52:54 +0800993 rq_qos_merge(req->q, req, bio);
994
995 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
996 blk_rq_set_mixed_merge(req);
997
998 bio->bi_next = req->bio;
999 req->bio = bio;
1000
1001 req->__sector = bio->bi_iter.bi_sector;
1002 req->__data_len += bio->bi_iter.bi_size;
1003
1004 bio_crypt_do_front_merge(req, bio);
1005
1006 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001007 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +08001008}
1009
Christoph Hellwigeda5cc92020-10-06 09:07:19 +02001010static enum bio_merge_status bio_attempt_discard_merge(struct request_queue *q,
1011 struct request *req, struct bio *bio)
Baolin Wang8e756372020-08-28 10:52:54 +08001012{
1013 unsigned short segments = blk_rq_nr_discard_segments(req);
1014
1015 if (segments >= queue_max_discard_segments(q))
1016 goto no_merge;
1017 if (blk_rq_sectors(req) + bio_sectors(bio) >
1018 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
1019 goto no_merge;
1020
1021 rq_qos_merge(q, req, bio);
1022
1023 req->biotail->bi_next = bio;
1024 req->biotail = bio;
1025 req->__data_len += bio->bi_iter.bi_size;
1026 req->nr_phys_segments = segments + 1;
1027
1028 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001029 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +08001030no_merge:
1031 req_set_nomerge(q, req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001032 return BIO_MERGE_FAILED;
1033}
1034
1035static enum bio_merge_status blk_attempt_bio_merge(struct request_queue *q,
1036 struct request *rq,
1037 struct bio *bio,
1038 unsigned int nr_segs,
1039 bool sched_allow_merge)
1040{
1041 if (!blk_rq_merge_ok(rq, bio))
1042 return BIO_MERGE_NONE;
1043
1044 switch (blk_try_merge(rq, bio)) {
1045 case ELEVATOR_BACK_MERGE:
Baolin Wang265600b2020-09-02 09:45:25 +08001046 if (!sched_allow_merge || blk_mq_sched_allow_merge(q, rq, bio))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001047 return bio_attempt_back_merge(rq, bio, nr_segs);
1048 break;
1049 case ELEVATOR_FRONT_MERGE:
Baolin Wang265600b2020-09-02 09:45:25 +08001050 if (!sched_allow_merge || blk_mq_sched_allow_merge(q, rq, bio))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001051 return bio_attempt_front_merge(rq, bio, nr_segs);
1052 break;
1053 case ELEVATOR_DISCARD_MERGE:
1054 return bio_attempt_discard_merge(q, rq, bio);
1055 default:
1056 return BIO_MERGE_NONE;
1057 }
1058
1059 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +08001060}
1061
1062/**
1063 * blk_attempt_plug_merge - try to merge with %current's plugged list
1064 * @q: request_queue new bio is being queued at
1065 * @bio: new bio being queued
1066 * @nr_segs: number of segments in @bio
Jens Axboe87c037d2021-10-18 10:07:09 -06001067 * from the passed in @q already in the plug list
Baolin Wang8e756372020-08-28 10:52:54 +08001068 *
Jens Axboed38a9c02021-10-14 07:24:07 -06001069 * Determine whether @bio being queued on @q can be merged with the previous
1070 * request on %current's plugged list. Returns %true if merge was successful,
Baolin Wang8e756372020-08-28 10:52:54 +08001071 * otherwise %false.
1072 *
1073 * Plugging coalesces IOs from the same issuer for the same purpose without
1074 * going through @q->queue_lock. As such it's more of an issuing mechanism
1075 * than scheduling, and the request, while may have elvpriv data, is not
1076 * added on the elevator at this point. In addition, we don't have
1077 * reliable access to the elevator outside queue lock. Only check basic
1078 * merging parameters without querying the elevator.
1079 *
1080 * Caller must ensure !blk_queue_nomerges(q) beforehand.
1081 */
1082bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01001083 unsigned int nr_segs)
Baolin Wang8e756372020-08-28 10:52:54 +08001084{
1085 struct blk_plug *plug;
1086 struct request *rq;
Baolin Wang8e756372020-08-28 10:52:54 +08001087
1088 plug = blk_mq_plug(q, bio);
Jens Axboebc490f82021-10-18 10:12:12 -06001089 if (!plug || rq_list_empty(plug->mq_list))
Baolin Wang8e756372020-08-28 10:52:54 +08001090 return false;
1091
Jens Axboed38a9c02021-10-14 07:24:07 -06001092 /* check the previously added entry for a quick merge attempt */
Jens Axboebc490f82021-10-18 10:12:12 -06001093 rq = rq_list_peek(&plug->mq_list);
Jens Axboe87c037d2021-10-18 10:07:09 -06001094 if (rq->q == q) {
Ming Leia1cb6532021-11-02 21:35:00 +08001095 if (blk_attempt_bio_merge(q, rq, bio, nr_segs, false) ==
1096 BIO_MERGE_OK)
1097 return true;
Baolin Wang8e756372020-08-28 10:52:54 +08001098 }
Baolin Wang8e756372020-08-28 10:52:54 +08001099 return false;
1100}
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001101
1102/*
1103 * Iterate list of requests and see if we can merge this bio with any
1104 * of them.
1105 */
1106bool blk_bio_list_merge(struct request_queue *q, struct list_head *list,
1107 struct bio *bio, unsigned int nr_segs)
1108{
1109 struct request *rq;
1110 int checked = 8;
1111
1112 list_for_each_entry_reverse(rq, list, queuelist) {
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001113 if (!checked--)
1114 break;
1115
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001116 switch (blk_attempt_bio_merge(q, rq, bio, nr_segs, true)) {
1117 case BIO_MERGE_NONE:
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001118 continue;
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001119 case BIO_MERGE_OK:
1120 return true;
1121 case BIO_MERGE_FAILED:
1122 return false;
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001123 }
1124
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001125 }
1126
1127 return false;
1128}
1129EXPORT_SYMBOL_GPL(blk_bio_list_merge);
Christoph Hellwigeda5cc92020-10-06 09:07:19 +02001130
1131bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
1132 unsigned int nr_segs, struct request **merged_request)
1133{
1134 struct request *rq;
1135
1136 switch (elv_merge(q, &rq, bio)) {
1137 case ELEVATOR_BACK_MERGE:
1138 if (!blk_mq_sched_allow_merge(q, rq, bio))
1139 return false;
1140 if (bio_attempt_back_merge(rq, bio, nr_segs) != BIO_MERGE_OK)
1141 return false;
1142 *merged_request = attempt_back_merge(q, rq);
1143 if (!*merged_request)
1144 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
1145 return true;
1146 case ELEVATOR_FRONT_MERGE:
1147 if (!blk_mq_sched_allow_merge(q, rq, bio))
1148 return false;
1149 if (bio_attempt_front_merge(rq, bio, nr_segs) != BIO_MERGE_OK)
1150 return false;
1151 *merged_request = attempt_front_merge(q, rq);
1152 if (!*merged_request)
1153 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
1154 return true;
1155 case ELEVATOR_DISCARD_MERGE:
1156 return bio_attempt_discard_merge(q, rq, bio) == BIO_MERGE_OK;
1157 default:
1158 return false;
1159 }
1160}
1161EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);