blob: 893c1a60b701f19eb2f565b8133fa3a4bb96f017 [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>
11
Mike Krinkincda22642015-12-03 17:32:30 +030012#include <trace/events/block.h>
13
Jens Axboed6d48192008-01-29 14:04:06 +010014#include "blk.h"
Baolin Wang8e756372020-08-28 10:52:54 +080015#include "blk-rq-qos.h"
Jens Axboea7b36ee2021-10-05 09:11:56 -060016#include "blk-throttle.h"
Jens Axboed6d48192008-01-29 14:04:06 +010017
Christoph Hellwigff18d772021-10-12 18:18:03 +020018static inline void bio_get_first_bvec(struct bio *bio, struct bio_vec *bv)
19{
20 *bv = mp_bvec_iter_bvec(bio->bi_io_vec, bio->bi_iter);
21}
22
23static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv)
24{
25 struct bvec_iter iter = bio->bi_iter;
26 int idx;
27
28 bio_get_first_bvec(bio, bv);
29 if (bv->bv_len == bio->bi_iter.bi_size)
30 return; /* this bio only has a single bvec */
31
32 bio_advance_iter(bio, &iter, iter.bi_size);
33
34 if (!iter.bi_bvec_done)
35 idx = iter.bi_idx - 1;
36 else /* in the middle of bvec */
37 idx = iter.bi_idx;
38
39 *bv = bio->bi_io_vec[idx];
40
41 /*
42 * iter.bi_bvec_done records actual length of the last bvec
43 * if this bio ends in the middle of one io vector
44 */
45 if (iter.bi_bvec_done)
46 bv->bv_len = iter.bi_bvec_done;
47}
48
Christoph Hellwige9907002018-09-24 09:43:48 +020049static inline bool bio_will_gap(struct request_queue *q,
50 struct request *prev_rq, struct bio *prev, struct bio *next)
51{
52 struct bio_vec pb, nb;
53
54 if (!bio_has_data(prev) || !queue_virt_boundary(q))
55 return false;
56
57 /*
58 * Don't merge if the 1st bio starts with non-zero offset, otherwise it
59 * is quite difficult to respect the sg gap limit. We work hard to
60 * merge a huge number of small single bios in case of mkfs.
61 */
62 if (prev_rq)
63 bio_get_first_bvec(prev_rq->bio, &pb);
64 else
65 bio_get_first_bvec(prev, &pb);
Johannes Thumshirndf376b22018-11-07 14:58:14 +010066 if (pb.bv_offset & queue_virt_boundary(q))
Christoph Hellwige9907002018-09-24 09:43:48 +020067 return true;
68
69 /*
70 * We don't need to worry about the situation that the merged segment
71 * ends in unaligned virt boundary:
72 *
73 * - if 'pb' ends aligned, the merged segment ends aligned
74 * - if 'pb' ends unaligned, the next bio must include
75 * one single bvec of 'nb', otherwise the 'nb' can't
76 * merge with 'pb'
77 */
78 bio_get_last_bvec(prev, &pb);
79 bio_get_first_bvec(next, &nb);
Christoph Hellwig200a9af2019-05-21 09:01:42 +020080 if (biovec_phys_mergeable(q, &pb, &nb))
Christoph Hellwige9907002018-09-24 09:43:48 +020081 return false;
82 return __bvec_gap_to_prev(q, &pb, nb.bv_offset);
83}
84
85static inline bool req_gap_back_merge(struct request *req, struct bio *bio)
86{
87 return bio_will_gap(req->q, req, req->biotail, bio);
88}
89
90static inline bool req_gap_front_merge(struct request *req, struct bio *bio)
91{
92 return bio_will_gap(req->q, NULL, bio, req->bio);
93}
94
Kent Overstreet54efd502015-04-23 22:37:18 -070095static struct bio *blk_bio_discard_split(struct request_queue *q,
96 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +080097 struct bio_set *bs,
98 unsigned *nsegs)
Kent Overstreet54efd502015-04-23 22:37:18 -070099{
100 unsigned int max_discard_sectors, granularity;
101 int alignment;
102 sector_t tmp;
103 unsigned split_sectors;
104
Ming Leibdced432015-10-20 23:13:52 +0800105 *nsegs = 1;
106
Kent Overstreet54efd502015-04-23 22:37:18 -0700107 /* Zero-sector (unknown) and one-sector granularities are the same. */
108 granularity = max(q->limits.discard_granularity >> 9, 1U);
109
Ming Lei1adfc5e2018-10-29 20:57:17 +0800110 max_discard_sectors = min(q->limits.max_discard_sectors,
111 bio_allowed_max_sectors(q));
Kent Overstreet54efd502015-04-23 22:37:18 -0700112 max_discard_sectors -= max_discard_sectors % granularity;
113
114 if (unlikely(!max_discard_sectors)) {
115 /* XXX: warn */
116 return NULL;
117 }
118
119 if (bio_sectors(bio) <= max_discard_sectors)
120 return NULL;
121
122 split_sectors = max_discard_sectors;
123
124 /*
125 * If the next starting sector would be misaligned, stop the discard at
126 * the previous aligned sector.
127 */
128 alignment = (q->limits.discard_alignment >> 9) % granularity;
129
130 tmp = bio->bi_iter.bi_sector + split_sectors - alignment;
131 tmp = sector_div(tmp, granularity);
132
133 if (split_sectors > tmp)
134 split_sectors -= tmp;
135
136 return bio_split(bio, split_sectors, GFP_NOIO, bs);
137}
138
Christoph Hellwig885fa132017-04-05 19:21:01 +0200139static struct bio *blk_bio_write_zeroes_split(struct request_queue *q,
140 struct bio *bio, struct bio_set *bs, unsigned *nsegs)
141{
Christoph Hellwigd665e122019-07-03 05:24:35 -0700142 *nsegs = 0;
Christoph Hellwig885fa132017-04-05 19:21:01 +0200143
144 if (!q->limits.max_write_zeroes_sectors)
145 return NULL;
146
147 if (bio_sectors(bio) <= q->limits.max_write_zeroes_sectors)
148 return NULL;
149
150 return bio_split(bio, q->limits.max_write_zeroes_sectors, GFP_NOIO, bs);
151}
152
Kent Overstreet54efd502015-04-23 22:37:18 -0700153static struct bio *blk_bio_write_same_split(struct request_queue *q,
154 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +0800155 struct bio_set *bs,
156 unsigned *nsegs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700157{
Ming Leibdced432015-10-20 23:13:52 +0800158 *nsegs = 1;
159
Kent Overstreet54efd502015-04-23 22:37:18 -0700160 if (!q->limits.max_write_same_sectors)
161 return NULL;
162
163 if (bio_sectors(bio) <= q->limits.max_write_same_sectors)
164 return NULL;
165
166 return bio_split(bio, q->limits.max_write_same_sectors, GFP_NOIO, bs);
167}
168
Bart Van Assche9cc51692019-08-01 15:50:44 -0700169/*
170 * Return the maximum number of sectors from the start of a bio that may be
171 * submitted as a single request to a block device. If enough sectors remain,
172 * align the end to the physical block size. Otherwise align the end to the
173 * logical block size. This approach minimizes the number of non-aligned
174 * requests that are submitted to a block device if the start of a bio is not
175 * aligned to a physical block boundary.
176 */
Ming Leid0e5fbb2016-01-23 08:05:33 +0800177static inline unsigned get_max_io_size(struct request_queue *q,
178 struct bio *bio)
179{
Mike Snitzer3ee16db2020-11-30 10:57:43 -0500180 unsigned sectors = blk_max_size_offset(q, bio->bi_iter.bi_sector, 0);
Bart Van Assche9cc51692019-08-01 15:50:44 -0700181 unsigned max_sectors = sectors;
182 unsigned pbs = queue_physical_block_size(q) >> SECTOR_SHIFT;
183 unsigned lbs = queue_logical_block_size(q) >> SECTOR_SHIFT;
184 unsigned start_offset = bio->bi_iter.bi_sector & (pbs - 1);
Ming Leid0e5fbb2016-01-23 08:05:33 +0800185
Bart Van Assche9cc51692019-08-01 15:50:44 -0700186 max_sectors += start_offset;
187 max_sectors &= ~(pbs - 1);
188 if (max_sectors > start_offset)
189 return max_sectors - start_offset;
Ming Leid0e5fbb2016-01-23 08:05:33 +0800190
Keith Busche4b469c2020-08-06 14:58:37 -0700191 return sectors & ~(lbs - 1);
Ming Leid0e5fbb2016-01-23 08:05:33 +0800192}
193
Ming Lei429120f2019-12-29 10:32:30 +0800194static inline unsigned get_max_segment_size(const struct request_queue *q,
195 struct page *start_page,
196 unsigned long offset)
Ming Leidcebd752019-02-15 19:13:12 +0800197{
198 unsigned long mask = queue_segment_boundary(q);
199
Ming Lei429120f2019-12-29 10:32:30 +0800200 offset = mask & (page_to_phys(start_page) + offset);
Ming Lei4a2f7042020-01-11 20:57:43 +0800201
202 /*
203 * overflow may be triggered in case of zero page physical address
204 * on 32bit arch, use queue's max segment size when that happens.
205 */
206 return min_not_zero(mask - offset + 1,
207 (unsigned long)queue_max_segment_size(q));
Ming Leidcebd752019-02-15 19:13:12 +0800208}
209
Bart Van Assche708b25b2019-08-01 15:50:43 -0700210/**
211 * bvec_split_segs - verify whether or not a bvec should be split in the middle
212 * @q: [in] request queue associated with the bio associated with @bv
213 * @bv: [in] bvec to examine
214 * @nsegs: [in,out] Number of segments in the bio being built. Incremented
215 * by the number of segments from @bv that may be appended to that
216 * bio without exceeding @max_segs
217 * @sectors: [in,out] Number of sectors in the bio being built. Incremented
218 * by the number of sectors from @bv that may be appended to that
219 * bio without exceeding @max_sectors
220 * @max_segs: [in] upper bound for *@nsegs
221 * @max_sectors: [in] upper bound for *@sectors
222 *
223 * When splitting a bio, it can happen that a bvec is encountered that is too
224 * big to fit in a single segment and hence that it has to be split in the
225 * middle. This function verifies whether or not that should happen. The value
226 * %true is returned if and only if appending the entire @bv to a bio with
227 * *@nsegs segments and *@sectors sectors would make that bio unacceptable for
228 * the block driver.
Ming Leidcebd752019-02-15 19:13:12 +0800229 */
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -0700230static bool bvec_split_segs(const struct request_queue *q,
231 const struct bio_vec *bv, unsigned *nsegs,
Bart Van Assche708b25b2019-08-01 15:50:43 -0700232 unsigned *sectors, unsigned max_segs,
233 unsigned max_sectors)
Ming Leidcebd752019-02-15 19:13:12 +0800234{
Bart Van Assche708b25b2019-08-01 15:50:43 -0700235 unsigned max_len = (min(max_sectors, UINT_MAX >> 9) - *sectors) << 9;
236 unsigned len = min(bv->bv_len, max_len);
Ming Leidcebd752019-02-15 19:13:12 +0800237 unsigned total_len = 0;
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700238 unsigned seg_size = 0;
Ming Leidcebd752019-02-15 19:13:12 +0800239
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700240 while (len && *nsegs < max_segs) {
Ming Lei429120f2019-12-29 10:32:30 +0800241 seg_size = get_max_segment_size(q, bv->bv_page,
242 bv->bv_offset + total_len);
Ming Leidcebd752019-02-15 19:13:12 +0800243 seg_size = min(seg_size, len);
244
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700245 (*nsegs)++;
Ming Leidcebd752019-02-15 19:13:12 +0800246 total_len += seg_size;
247 len -= seg_size;
248
249 if ((bv->bv_offset + total_len) & queue_virt_boundary(q))
250 break;
251 }
252
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700253 *sectors += total_len >> 9;
Ming Leidcebd752019-02-15 19:13:12 +0800254
Bart Van Assche708b25b2019-08-01 15:50:43 -0700255 /* tell the caller to split the bvec if it is too big to fit */
256 return len > 0 || bv->bv_len > max_len;
Ming Leidcebd752019-02-15 19:13:12 +0800257}
258
Bart Van Asschedad77582019-08-01 15:50:41 -0700259/**
260 * blk_bio_segment_split - split a bio in two bios
261 * @q: [in] request queue pointer
262 * @bio: [in] bio to be split
263 * @bs: [in] bio set to allocate the clone from
264 * @segs: [out] number of segments in the bio with the first half of the sectors
265 *
266 * Clone @bio, update the bi_iter of the clone to represent the first sectors
267 * of @bio and update @bio->bi_iter to represent the remaining sectors. The
268 * following is guaranteed for the cloned bio:
269 * - That it has at most get_max_io_size(@q, @bio) sectors.
270 * - That it has at most queue_max_segments(@q) segments.
271 *
272 * Except for discard requests the cloned bio will point at the bi_io_vec of
273 * the original bio. It is the responsibility of the caller to ensure that the
274 * original bio is not freed before the cloned bio. The caller is also
275 * responsible for ensuring that @bs is only destroyed after processing of the
276 * split bio has finished.
277 */
Kent Overstreet54efd502015-04-23 22:37:18 -0700278static struct bio *blk_bio_segment_split(struct request_queue *q,
279 struct bio *bio,
Ming Leibdced432015-10-20 23:13:52 +0800280 struct bio_set *bs,
281 unsigned *segs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700282{
Jens Axboe5014c312015-09-02 16:46:02 -0600283 struct bio_vec bv, bvprv, *bvprvp = NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700284 struct bvec_iter iter;
Christoph Hellwig68698752019-05-21 09:01:43 +0200285 unsigned nsegs = 0, sectors = 0;
Ming Leid0e5fbb2016-01-23 08:05:33 +0800286 const unsigned max_sectors = get_max_io_size(q, bio);
Ming Lei05b700b2019-03-03 21:17:48 +0800287 const unsigned max_segs = queue_max_segments(q);
Kent Overstreet54efd502015-04-23 22:37:18 -0700288
Ming Leidcebd752019-02-15 19:13:12 +0800289 bio_for_each_bvec(bv, bio, iter) {
Kent Overstreet54efd502015-04-23 22:37:18 -0700290 /*
291 * If the queue doesn't support SG gaps and adding this
292 * offset would create a gap, disallow it.
293 */
Jens Axboe5014c312015-09-02 16:46:02 -0600294 if (bvprvp && bvec_gap_to_prev(q, bvprvp, bv.bv_offset))
Kent Overstreet54efd502015-04-23 22:37:18 -0700295 goto split;
296
Bart Van Assche708b25b2019-08-01 15:50:43 -0700297 if (nsegs < max_segs &&
298 sectors + (bv.bv_len >> 9) <= max_sectors &&
299 bv.bv_offset + bv.bv_len <= PAGE_SIZE) {
300 nsegs++;
301 sectors += bv.bv_len >> 9;
302 } else if (bvec_split_segs(q, &bv, &nsegs, &sectors, max_segs,
303 max_sectors)) {
Ming Leicf8c0c62017-12-18 20:22:16 +0800304 goto split;
Keith Busche36f6202016-01-12 15:08:39 -0700305 }
306
Kent Overstreet54efd502015-04-23 22:37:18 -0700307 bvprv = bv;
Ming Lei578270b2015-11-24 10:35:29 +0800308 bvprvp = &bvprv;
Kent Overstreet54efd502015-04-23 22:37:18 -0700309 }
310
Christoph Hellwigd6270652019-06-06 12:29:03 +0200311 *segs = nsegs;
312 return NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700313split:
Ming Leibdced432015-10-20 23:13:52 +0800314 *segs = nsegs;
Jeffle Xucc29e1b2020-11-26 17:18:52 +0800315
316 /*
317 * Bio splitting may cause subtle trouble such as hang when doing sync
318 * iopoll in direct IO routine. Given performance gain of iopoll for
319 * big IO can be trival, disable iopoll when split needed.
320 */
Christoph Hellwig6ce913f2021-10-12 13:12:21 +0200321 bio_clear_polled(bio);
Christoph Hellwigd6270652019-06-06 12:29:03 +0200322 return bio_split(bio, sectors, GFP_NOIO, bs);
Kent Overstreet54efd502015-04-23 22:37:18 -0700323}
324
Bart Van Asschedad77582019-08-01 15:50:41 -0700325/**
326 * __blk_queue_split - split a bio and submit the second half
Jens Axboeabd45c12021-10-13 12:43:41 -0600327 * @q: [in] request_queue new bio is being queued at
Bart Van Asschedad77582019-08-01 15:50:41 -0700328 * @bio: [in, out] bio to be split
329 * @nr_segs: [out] number of segments in the first bio
330 *
331 * Split a bio into two bios, chain the two bios, submit the second half and
332 * store a pointer to the first half in *@bio. If the second bio is still too
333 * big it will be split by a recursive call to this function. Since this
Christoph Hellwig309dca302021-01-24 11:02:34 +0100334 * function may allocate a new bio from q->bio_split, it is the responsibility
335 * of the caller to ensure that q->bio_split is only released after processing
336 * of the split bio has finished.
Bart Van Asschedad77582019-08-01 15:50:41 -0700337 */
Jens Axboeabd45c12021-10-13 12:43:41 -0600338void __blk_queue_split(struct request_queue *q, struct bio **bio,
339 unsigned int *nr_segs)
Kent Overstreet54efd502015-04-23 22:37:18 -0700340{
Christoph Hellwigfa532282019-11-04 10:05:43 -0800341 struct bio *split = NULL;
Kent Overstreet54efd502015-04-23 22:37:18 -0700342
Adrian Hunter7afafc82016-08-16 10:59:35 +0300343 switch (bio_op(*bio)) {
344 case REQ_OP_DISCARD:
345 case REQ_OP_SECURE_ERASE:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200346 split = blk_bio_discard_split(q, *bio, &q->bio_split, nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300347 break;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800348 case REQ_OP_WRITE_ZEROES:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200349 split = blk_bio_write_zeroes_split(q, *bio, &q->bio_split,
350 nr_segs);
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800351 break;
Adrian Hunter7afafc82016-08-16 10:59:35 +0300352 case REQ_OP_WRITE_SAME:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200353 split = blk_bio_write_same_split(q, *bio, &q->bio_split,
354 nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300355 break;
356 default:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200357 split = blk_bio_segment_split(q, *bio, &q->bio_split, nr_segs);
Adrian Hunter7afafc82016-08-16 10:59:35 +0300358 break;
359 }
Ming Leibdced432015-10-20 23:13:52 +0800360
Kent Overstreet54efd502015-04-23 22:37:18 -0700361 if (split) {
Ming Lei6ac45ae2015-10-20 23:13:53 +0800362 /* there isn't chance to merge the splitted bio */
Jens Axboe1eff9d32016-08-05 15:35:16 -0600363 split->bi_opf |= REQ_NOMERGE;
Ming Lei6ac45ae2015-10-20 23:13:53 +0800364
Kent Overstreet54efd502015-04-23 22:37:18 -0700365 bio_chain(split, *bio);
Christoph Hellwigeb6f7f72020-12-03 17:21:37 +0100366 trace_block_split(split, (*bio)->bi_iter.bi_sector);
Christoph Hellwiged00aab2020-07-01 10:59:44 +0200367 submit_bio_noacct(*bio);
Kent Overstreet54efd502015-04-23 22:37:18 -0700368 *bio = split;
Chunguang Xu4f1e9632021-08-02 11:51:56 +0800369
370 blk_throtl_charge_bio_split(*bio);
Kent Overstreet54efd502015-04-23 22:37:18 -0700371 }
372}
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200373
Bart Van Asschedad77582019-08-01 15:50:41 -0700374/**
375 * blk_queue_split - split a bio and submit the second half
Bart Van Asschedad77582019-08-01 15:50:41 -0700376 * @bio: [in, out] bio to be split
377 *
378 * Split a bio into two bios, chains the two bios, submit the second half and
379 * store a pointer to the first half in *@bio. Since this function may allocate
Christoph Hellwig309dca302021-01-24 11:02:34 +0100380 * a new bio from q->bio_split, it is the responsibility of the caller to ensure
381 * that q->bio_split is only released after processing of the split bio has
382 * finished.
Bart Van Asschedad77582019-08-01 15:50:41 -0700383 */
Christoph Hellwigf695ca32020-07-01 10:59:39 +0200384void blk_queue_split(struct bio **bio)
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200385{
Pavel Begunkov859897c2021-10-19 22:24:11 +0100386 struct request_queue *q = bdev_get_queue((*bio)->bi_bdev);
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200387 unsigned int nr_segs;
388
Jens Axboeabd45c12021-10-13 12:43:41 -0600389 if (blk_may_split(q, *bio))
390 __blk_queue_split(q, bio, &nr_segs);
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200391}
Kent Overstreet54efd502015-04-23 22:37:18 -0700392EXPORT_SYMBOL(blk_queue_split);
393
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200394unsigned int blk_recalc_rq_segments(struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100395{
Christoph Hellwig68698752019-05-21 09:01:43 +0200396 unsigned int nr_phys_segs = 0;
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700397 unsigned int nr_sectors = 0;
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200398 struct req_iterator iter;
Christoph Hellwig68698752019-05-21 09:01:43 +0200399 struct bio_vec bv;
Jens Axboed6d48192008-01-29 14:04:06 +0100400
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200401 if (!rq->bio)
Jens Axboe1e428072009-02-23 09:03:10 +0100402 return 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100403
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200404 switch (bio_op(rq->bio)) {
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800405 case REQ_OP_DISCARD:
406 case REQ_OP_SECURE_ERASE:
David Jefferya958937f2021-02-11 09:38:07 -0500407 if (queue_max_discard_segments(rq->q) > 1) {
408 struct bio *bio = rq->bio;
409
410 for_each_bio(bio)
411 nr_phys_segs++;
412 return nr_phys_segs;
413 }
414 return 1;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800415 case REQ_OP_WRITE_ZEROES:
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700416 return 0;
417 case REQ_OP_WRITE_SAME:
Kent Overstreet5cb88502014-02-07 13:53:46 -0700418 return 1;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800419 }
Kent Overstreet5cb88502014-02-07 13:53:46 -0700420
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200421 rq_for_each_bvec(bv, rq, iter)
Bart Van Asscheff9811b2019-08-01 15:50:42 -0700422 bvec_split_segs(rq->q, &bv, &nr_phys_segs, &nr_sectors,
Bart Van Assche708b25b2019-08-01 15:50:43 -0700423 UINT_MAX, UINT_MAX);
Jens Axboe1e428072009-02-23 09:03:10 +0100424 return nr_phys_segs;
425}
426
Ming Lei48d77272019-02-27 20:40:11 +0800427static inline struct scatterlist *blk_next_sg(struct scatterlist **sg,
Ming Lei862e5a52019-02-15 19:13:13 +0800428 struct scatterlist *sglist)
429{
430 if (!*sg)
431 return sglist;
432
433 /*
434 * If the driver previously mapped a shorter list, we could see a
435 * termination bit prematurely unless it fully inits the sg table
436 * on each mapping. We KNOW that there must be more entries here
437 * or the driver would be buggy, so force clear the termination bit
438 * to avoid doing a full sg_init_table() in drivers for each command.
439 */
440 sg_unmark_end(*sg);
441 return sg_next(*sg);
442}
443
444static unsigned blk_bvec_map_sg(struct request_queue *q,
445 struct bio_vec *bvec, struct scatterlist *sglist,
446 struct scatterlist **sg)
447{
448 unsigned nbytes = bvec->bv_len;
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200449 unsigned nsegs = 0, total = 0;
Ming Lei862e5a52019-02-15 19:13:13 +0800450
451 while (nbytes > 0) {
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200452 unsigned offset = bvec->bv_offset + total;
Ming Lei429120f2019-12-29 10:32:30 +0800453 unsigned len = min(get_max_segment_size(q, bvec->bv_page,
454 offset), nbytes);
Christoph Hellwigf9f76872019-04-19 08:56:24 +0200455 struct page *page = bvec->bv_page;
456
457 /*
458 * Unfortunately a fair number of drivers barf on scatterlists
459 * that have an offset larger than PAGE_SIZE, despite other
460 * subsystems dealing with that invariant just fine. For now
461 * stick to the legacy format where we never present those from
462 * the block layer, but the code below should be removed once
463 * these offenders (mostly MMC/SD drivers) are fixed.
464 */
465 page += (offset >> PAGE_SHIFT);
466 offset &= ~PAGE_MASK;
Ming Lei862e5a52019-02-15 19:13:13 +0800467
468 *sg = blk_next_sg(sg, sglist);
Christoph Hellwigf9f76872019-04-19 08:56:24 +0200469 sg_set_page(*sg, page, len, offset);
Ming Lei862e5a52019-02-15 19:13:13 +0800470
Christoph Hellwig8a96a0e2019-04-11 08:23:27 +0200471 total += len;
472 nbytes -= len;
Ming Lei862e5a52019-02-15 19:13:13 +0800473 nsegs++;
474 }
475
476 return nsegs;
477}
478
Ming Lei16e3e412019-03-17 18:01:11 +0800479static inline int __blk_bvec_map_sg(struct bio_vec bv,
480 struct scatterlist *sglist, struct scatterlist **sg)
481{
482 *sg = blk_next_sg(sg, sglist);
483 sg_set_page(*sg, bv.bv_page, bv.bv_len, bv.bv_offset);
484 return 1;
485}
486
Ming Leif6970f82019-03-17 18:01:12 +0800487/* only try to merge bvecs into one sg if they are from two bios */
488static inline bool
489__blk_segment_map_sg_merge(struct request_queue *q, struct bio_vec *bvec,
490 struct bio_vec *bvprv, struct scatterlist **sg)
Asias He963ab9e2012-08-02 23:42:03 +0200491{
492
493 int nbytes = bvec->bv_len;
494
Ming Leif6970f82019-03-17 18:01:12 +0800495 if (!*sg)
496 return false;
Asias He963ab9e2012-08-02 23:42:03 +0200497
Ming Leif6970f82019-03-17 18:01:12 +0800498 if ((*sg)->length + nbytes > queue_max_segment_size(q))
499 return false;
500
501 if (!biovec_phys_mergeable(q, bvprv, bvec))
502 return false;
503
504 (*sg)->length += nbytes;
505
506 return true;
Asias He963ab9e2012-08-02 23:42:03 +0200507}
508
Kent Overstreet5cb88502014-02-07 13:53:46 -0700509static int __blk_bios_map_sg(struct request_queue *q, struct bio *bio,
510 struct scatterlist *sglist,
511 struct scatterlist **sg)
512{
Kees Cook3f649ab2020-06-03 13:09:38 -0700513 struct bio_vec bvec, bvprv = { NULL };
Kent Overstreet5cb88502014-02-07 13:53:46 -0700514 struct bvec_iter iter;
Christoph Hellwig38417462018-12-13 16:17:10 +0100515 int nsegs = 0;
Ming Leif6970f82019-03-17 18:01:12 +0800516 bool new_bio = false;
Kent Overstreet5cb88502014-02-07 13:53:46 -0700517
Ming Leif6970f82019-03-17 18:01:12 +0800518 for_each_bio(bio) {
519 bio_for_each_bvec(bvec, bio, iter) {
520 /*
521 * Only try to merge bvecs from two bios given we
522 * have done bio internal merge when adding pages
523 * to bio
524 */
525 if (new_bio &&
526 __blk_segment_map_sg_merge(q, &bvec, &bvprv, sg))
527 goto next_bvec;
528
529 if (bvec.bv_offset + bvec.bv_len <= PAGE_SIZE)
530 nsegs += __blk_bvec_map_sg(bvec, sglist, sg);
531 else
532 nsegs += blk_bvec_map_sg(q, &bvec, sglist, sg);
533 next_bvec:
534 new_bio = false;
535 }
Ming Leib21e11c2019-04-02 10:26:44 +0800536 if (likely(bio->bi_iter.bi_size)) {
537 bvprv = bvec;
538 new_bio = true;
539 }
Ming Leif6970f82019-03-17 18:01:12 +0800540 }
Kent Overstreet5cb88502014-02-07 13:53:46 -0700541
542 return nsegs;
543}
544
Jens Axboed6d48192008-01-29 14:04:06 +0100545/*
546 * map a request to scatterlist, return number of sg entries setup. Caller
547 * must make sure sg can hold rq->nr_phys_segments entries
548 */
Christoph Hellwig89de1502020-04-14 09:42:22 +0200549int __blk_rq_map_sg(struct request_queue *q, struct request *rq,
550 struct scatterlist *sglist, struct scatterlist **last_sg)
Jens Axboed6d48192008-01-29 14:04:06 +0100551{
Kent Overstreet5cb88502014-02-07 13:53:46 -0700552 int nsegs = 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100553
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700554 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200555 nsegs = __blk_bvec_map_sg(rq->special_vec, sglist, last_sg);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700556 else if (rq->bio && bio_op(rq->bio) == REQ_OP_WRITE_SAME)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200557 nsegs = __blk_bvec_map_sg(bio_iovec(rq->bio), sglist, last_sg);
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700558 else if (rq->bio)
Christoph Hellwig89de1502020-04-14 09:42:22 +0200559 nsegs = __blk_bios_map_sg(q, rq->bio, sglist, last_sg);
FUJITA Tomonorif18573a2008-04-11 12:56:52 +0200560
Christoph Hellwig89de1502020-04-14 09:42:22 +0200561 if (*last_sg)
562 sg_mark_end(*last_sg);
Jens Axboed6d48192008-01-29 14:04:06 +0100563
Ming Lei12e57f52015-11-24 10:35:31 +0800564 /*
565 * Something must have been wrong if the figured number of
566 * segment is bigger than number of req's physical segments
567 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700568 WARN_ON(nsegs > blk_rq_nr_phys_segments(rq));
Ming Lei12e57f52015-11-24 10:35:31 +0800569
Jens Axboed6d48192008-01-29 14:04:06 +0100570 return nsegs;
571}
Christoph Hellwig89de1502020-04-14 09:42:22 +0200572EXPORT_SYMBOL(__blk_rq_map_sg);
Jens Axboed6d48192008-01-29 14:04:06 +0100573
Ming Lei943b40c2020-08-17 17:52:39 +0800574static inline unsigned int blk_rq_get_max_segments(struct request *rq)
575{
576 if (req_op(rq) == REQ_OP_DISCARD)
577 return queue_max_discard_segments(rq->q);
578 return queue_max_segments(rq->q);
579}
580
Christoph Hellwigbadf7f62021-09-20 14:33:26 +0200581static inline unsigned int blk_rq_get_max_sectors(struct request *rq,
582 sector_t offset)
583{
584 struct request_queue *q = rq->q;
585
586 if (blk_rq_is_passthrough(rq))
587 return q->limits.max_hw_sectors;
588
589 if (!q->limits.chunk_sectors ||
590 req_op(rq) == REQ_OP_DISCARD ||
591 req_op(rq) == REQ_OP_SECURE_ERASE)
592 return blk_queue_get_max_sectors(q, req_op(rq));
593
594 return min(blk_max_size_offset(q, offset, 0),
595 blk_queue_get_max_sectors(q, req_op(rq)));
596}
597
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200598static inline int ll_new_hw_segment(struct request *req, struct bio *bio,
599 unsigned int nr_phys_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100600{
Ming Lei2705dfb2021-06-28 10:33:12 +0800601 if (blk_integrity_merge_bio(req->q, req, bio) == false)
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200602 goto no_merge;
603
Ming Lei2705dfb2021-06-28 10:33:12 +0800604 /* discard request merge won't add new segment */
605 if (req_op(req) == REQ_OP_DISCARD)
606 return 1;
607
608 if (req->nr_phys_segments + nr_phys_segs > blk_rq_get_max_segments(req))
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200609 goto no_merge;
Jens Axboed6d48192008-01-29 14:04:06 +0100610
611 /*
612 * This will form the start of a new hw segment. Bump both
613 * counters.
614 */
Jens Axboed6d48192008-01-29 14:04:06 +0100615 req->nr_phys_segments += nr_phys_segs;
616 return 1;
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200617
618no_merge:
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200619 req_set_nomerge(req->q, req);
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200620 return 0;
Jens Axboed6d48192008-01-29 14:04:06 +0100621}
622
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200623int ll_back_merge_fn(struct request *req, struct bio *bio, unsigned int nr_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100624{
Jens Axboe5e7c4272015-09-03 19:28:20 +0300625 if (req_gap_back_merge(req, bio))
626 return 0;
Sagi Grimberg7f39add2015-09-11 09:03:04 -0600627 if (blk_integrity_rq(req) &&
628 integrity_req_gap_back_merge(req, bio))
629 return 0;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000630 if (!bio_crypt_ctx_back_mergeable(req, bio))
631 return 0;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400632 if (blk_rq_sectors(req) + bio_sectors(bio) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600633 blk_rq_get_max_sectors(req, blk_rq_pos(req))) {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200634 req_set_nomerge(req->q, req);
Jens Axboed6d48192008-01-29 14:04:06 +0100635 return 0;
636 }
Jens Axboed6d48192008-01-29 14:04:06 +0100637
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200638 return ll_new_hw_segment(req, bio, nr_segs);
Jens Axboed6d48192008-01-29 14:04:06 +0100639}
640
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200641static int ll_front_merge_fn(struct request *req, struct bio *bio,
642 unsigned int nr_segs)
Jens Axboed6d48192008-01-29 14:04:06 +0100643{
Jens Axboe5e7c4272015-09-03 19:28:20 +0300644 if (req_gap_front_merge(req, bio))
645 return 0;
Sagi Grimberg7f39add2015-09-11 09:03:04 -0600646 if (blk_integrity_rq(req) &&
647 integrity_req_gap_front_merge(req, bio))
648 return 0;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000649 if (!bio_crypt_ctx_front_mergeable(req, bio))
650 return 0;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400651 if (blk_rq_sectors(req) + bio_sectors(bio) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600652 blk_rq_get_max_sectors(req, bio->bi_iter.bi_sector)) {
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200653 req_set_nomerge(req->q, req);
Jens Axboed6d48192008-01-29 14:04:06 +0100654 return 0;
655 }
Jens Axboed6d48192008-01-29 14:04:06 +0100656
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200657 return ll_new_hw_segment(req, bio, nr_segs);
Jens Axboed6d48192008-01-29 14:04:06 +0100658}
659
Jens Axboe445251d2018-02-01 14:01:02 -0700660static bool req_attempt_discard_merge(struct request_queue *q, struct request *req,
661 struct request *next)
662{
663 unsigned short segments = blk_rq_nr_discard_segments(req);
664
665 if (segments >= queue_max_discard_segments(q))
666 goto no_merge;
667 if (blk_rq_sectors(req) + bio_sectors(next->bio) >
668 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
669 goto no_merge;
670
671 req->nr_phys_segments = segments + blk_rq_nr_discard_segments(next);
672 return true;
673no_merge:
674 req_set_nomerge(q, req);
675 return false;
676}
677
Jens Axboed6d48192008-01-29 14:04:06 +0100678static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
679 struct request *next)
680{
681 int total_phys_segments;
Jens Axboed6d48192008-01-29 14:04:06 +0100682
Jens Axboe5e7c4272015-09-03 19:28:20 +0300683 if (req_gap_back_merge(req, next->bio))
Keith Busch854fbb92015-02-11 08:20:13 -0700684 return 0;
685
Jens Axboed6d48192008-01-29 14:04:06 +0100686 /*
687 * Will it become too large?
688 */
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400689 if ((blk_rq_sectors(req) + blk_rq_sectors(next)) >
Damien Le Moal17007f32016-07-20 21:40:47 -0600690 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
Jens Axboed6d48192008-01-29 14:04:06 +0100691 return 0;
692
693 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
Ming Lei943b40c2020-08-17 17:52:39 +0800694 if (total_phys_segments > blk_rq_get_max_segments(req))
Jens Axboed6d48192008-01-29 14:04:06 +0100695 return 0;
696
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -0400697 if (blk_integrity_merge_rq(q, req, next) == false)
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200698 return 0;
699
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000700 if (!bio_crypt_ctx_merge_rq(req, next))
701 return 0;
702
Jens Axboed6d48192008-01-29 14:04:06 +0100703 /* Merge is OK... */
704 req->nr_phys_segments = total_phys_segments;
Jens Axboed6d48192008-01-29 14:04:06 +0100705 return 1;
706}
707
Tejun Heo80a761f2009-07-03 17:48:17 +0900708/**
709 * blk_rq_set_mixed_merge - mark a request as mixed merge
710 * @rq: request to mark as mixed merge
711 *
712 * Description:
713 * @rq is about to be mixed merged. Make sure the attributes
714 * which can be mixed are set in each bio and mark @rq as mixed
715 * merged.
716 */
717void blk_rq_set_mixed_merge(struct request *rq)
718{
719 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
720 struct bio *bio;
721
Christoph Hellwige8064022016-10-20 15:12:13 +0200722 if (rq->rq_flags & RQF_MIXED_MERGE)
Tejun Heo80a761f2009-07-03 17:48:17 +0900723 return;
724
725 /*
726 * @rq will no longer represent mixable attributes for all the
727 * contained bios. It will just track those of the first one.
728 * Distributes the attributs to each bio.
729 */
730 for (bio = rq->bio; bio; bio = bio->bi_next) {
Jens Axboe1eff9d32016-08-05 15:35:16 -0600731 WARN_ON_ONCE((bio->bi_opf & REQ_FAILFAST_MASK) &&
732 (bio->bi_opf & REQ_FAILFAST_MASK) != ff);
733 bio->bi_opf |= ff;
Tejun Heo80a761f2009-07-03 17:48:17 +0900734 }
Christoph Hellwige8064022016-10-20 15:12:13 +0200735 rq->rq_flags |= RQF_MIXED_MERGE;
Tejun Heo80a761f2009-07-03 17:48:17 +0900736}
737
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200738static void blk_account_io_merge_request(struct request *req)
Jerome Marchand26308ea2009-03-27 10:31:51 +0100739{
740 if (blk_do_io_stat(req)) {
Mike Snitzer112f1582018-12-06 11:41:18 -0500741 part_stat_lock();
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200742 part_stat_inc(req->part, merges[op_stat_group(req_op(req))]);
Jerome Marchand26308ea2009-03-27 10:31:51 +0100743 part_stat_unlock();
744 }
745}
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200746
Eric Biggerse96c0d82018-11-14 17:19:46 -0800747static enum elv_merge blk_try_req_merge(struct request *req,
748 struct request *next)
Jianchao Wang698404662018-10-27 19:52:14 +0800749{
750 if (blk_discard_mergable(req))
751 return ELEVATOR_DISCARD_MERGE;
752 else if (blk_rq_pos(req) + blk_rq_sectors(req) == blk_rq_pos(next))
753 return ELEVATOR_BACK_MERGE;
754
755 return ELEVATOR_NO_MERGE;
756}
Jerome Marchand26308ea2009-03-27 10:31:51 +0100757
Christoph Hellwigbadf7f62021-09-20 14:33:26 +0200758static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b)
759{
760 if (bio_page(a) == bio_page(b) && bio_offset(a) == bio_offset(b))
761 return true;
762 return false;
763}
764
Jens Axboed6d48192008-01-29 14:04:06 +0100765/*
Jens Axboeb973cb72017-02-02 08:54:40 -0700766 * For non-mq, this has to be called with the request spinlock acquired.
767 * For mq with scheduling, the appropriate queue wide lock should be held.
Jens Axboed6d48192008-01-29 14:04:06 +0100768 */
Jens Axboeb973cb72017-02-02 08:54:40 -0700769static struct request *attempt_merge(struct request_queue *q,
770 struct request *req, struct request *next)
Jens Axboed6d48192008-01-29 14:04:06 +0100771{
772 if (!rq_mergeable(req) || !rq_mergeable(next))
Jens Axboeb973cb72017-02-02 08:54:40 -0700773 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100774
Christoph Hellwig288dab82016-06-09 16:00:36 +0200775 if (req_op(req) != req_op(next))
Jens Axboeb973cb72017-02-02 08:54:40 -0700776 return NULL;
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400777
Jens Axboed6d48192008-01-29 14:04:06 +0100778 if (rq_data_dir(req) != rq_data_dir(next)
Jens Axboe2081a562018-10-12 12:39:10 -0600779 || req->rq_disk != next->rq_disk)
Jens Axboeb973cb72017-02-02 08:54:40 -0700780 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100781
Mike Christie8fe0d472016-06-05 14:32:15 -0500782 if (req_op(req) == REQ_OP_WRITE_SAME &&
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400783 !blk_write_same_mergeable(req->bio, next->bio))
Jens Axboeb973cb72017-02-02 08:54:40 -0700784 return NULL;
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400785
Jens Axboed6d48192008-01-29 14:04:06 +0100786 /*
Jens Axboecb6934f2017-06-27 09:22:02 -0600787 * Don't allow merge of different write hints, or for a hint with
788 * non-hint IO.
789 */
790 if (req->write_hint != next->write_hint)
791 return NULL;
792
Damien Le Moal668ffc02018-11-20 10:52:37 +0900793 if (req->ioprio != next->ioprio)
794 return NULL;
795
Jens Axboecb6934f2017-06-27 09:22:02 -0600796 /*
Jens Axboed6d48192008-01-29 14:04:06 +0100797 * If we are allowed to merge, then append bio list
798 * from next to rq and release next. merge_requests_fn
799 * will have updated segment counts, update sector
Jens Axboe445251d2018-02-01 14:01:02 -0700800 * counts here. Handle DISCARDs separately, as they
801 * have separate settings.
Jens Axboed6d48192008-01-29 14:04:06 +0100802 */
Jianchao Wang698404662018-10-27 19:52:14 +0800803
804 switch (blk_try_req_merge(req, next)) {
805 case ELEVATOR_DISCARD_MERGE:
Jens Axboe445251d2018-02-01 14:01:02 -0700806 if (!req_attempt_discard_merge(q, req, next))
807 return NULL;
Jianchao Wang698404662018-10-27 19:52:14 +0800808 break;
809 case ELEVATOR_BACK_MERGE:
810 if (!ll_merge_requests_fn(q, req, next))
811 return NULL;
812 break;
813 default:
Jens Axboeb973cb72017-02-02 08:54:40 -0700814 return NULL;
Jianchao Wang698404662018-10-27 19:52:14 +0800815 }
Jens Axboed6d48192008-01-29 14:04:06 +0100816
817 /*
Tejun Heo80a761f2009-07-03 17:48:17 +0900818 * If failfast settings disagree or any of the two is already
819 * a mixed merge, mark both as mixed before proceeding. This
820 * makes sure that all involved bios have mixable attributes
821 * set properly.
822 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200823 if (((req->rq_flags | next->rq_flags) & RQF_MIXED_MERGE) ||
Tejun Heo80a761f2009-07-03 17:48:17 +0900824 (req->cmd_flags & REQ_FAILFAST_MASK) !=
825 (next->cmd_flags & REQ_FAILFAST_MASK)) {
826 blk_rq_set_mixed_merge(req);
827 blk_rq_set_mixed_merge(next);
828 }
829
830 /*
Omar Sandoval522a7772018-05-09 02:08:53 -0700831 * At this point we have either done a back merge or front merge. We
832 * need the smaller start_time_ns of the merged requests to be the
833 * current request for accounting purposes.
Jens Axboed6d48192008-01-29 14:04:06 +0100834 */
Omar Sandoval522a7772018-05-09 02:08:53 -0700835 if (next->start_time_ns < req->start_time_ns)
836 req->start_time_ns = next->start_time_ns;
Jens Axboed6d48192008-01-29 14:04:06 +0100837
838 req->biotail->bi_next = next->bio;
839 req->biotail = next->biotail;
840
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900841 req->__data_len += blk_rq_bytes(next);
Jens Axboed6d48192008-01-29 14:04:06 +0100842
Ming Lei2a5cf352018-12-01 00:38:18 +0800843 if (!blk_discard_mergable(req))
Jens Axboe445251d2018-02-01 14:01:02 -0700844 elv_merge_requests(q, req, next);
Jens Axboed6d48192008-01-29 14:04:06 +0100845
Jerome Marchand42dad762009-04-22 14:01:49 +0200846 /*
847 * 'next' is going away, so update stats accordingly
848 */
Konstantin Khlebnikovb9c54f52020-05-27 07:24:15 +0200849 blk_account_io_merge_request(next);
Jens Axboed6d48192008-01-29 14:04:06 +0100850
Christoph Hellwiga54895f2020-12-03 17:21:39 +0100851 trace_block_rq_merge(next);
Jan Karaf3bdc622020-06-17 15:58:23 +0200852
Jens Axboee4d750c2017-02-03 09:48:28 -0700853 /*
854 * ownership of bio passed from next to req, return 'next' for
855 * the caller to free
856 */
Boaz Harrosh1cd96c22009-03-24 12:35:07 +0100857 next->bio = NULL;
Jens Axboeb973cb72017-02-02 08:54:40 -0700858 return next;
Jens Axboed6d48192008-01-29 14:04:06 +0100859}
860
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200861static struct request *attempt_back_merge(struct request_queue *q,
862 struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100863{
864 struct request *next = elv_latter_request(q, rq);
865
866 if (next)
867 return attempt_merge(q, rq, next);
868
Jens Axboeb973cb72017-02-02 08:54:40 -0700869 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100870}
871
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200872static struct request *attempt_front_merge(struct request_queue *q,
873 struct request *rq)
Jens Axboed6d48192008-01-29 14:04:06 +0100874{
875 struct request *prev = elv_former_request(q, rq);
876
877 if (prev)
878 return attempt_merge(q, prev, rq);
879
Jens Axboeb973cb72017-02-02 08:54:40 -0700880 return NULL;
Jens Axboed6d48192008-01-29 14:04:06 +0100881}
Jens Axboe5e84ea32011-03-21 10:14:27 +0100882
Jan Karafd2ef392021-06-23 11:36:34 +0200883/*
884 * Try to merge 'next' into 'rq'. Return true if the merge happened, false
885 * otherwise. The caller is responsible for freeing 'next' if the merge
886 * happened.
887 */
888bool blk_attempt_req_merge(struct request_queue *q, struct request *rq,
889 struct request *next)
Jens Axboe5e84ea32011-03-21 10:14:27 +0100890{
Jan Karafd2ef392021-06-23 11:36:34 +0200891 return attempt_merge(q, rq, next);
Jens Axboe5e84ea32011-03-21 10:14:27 +0100892}
Tejun Heo050c8ea2012-02-08 09:19:38 +0100893
894bool blk_rq_merge_ok(struct request *rq, struct bio *bio)
895{
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400896 if (!rq_mergeable(rq) || !bio_mergeable(bio))
Tejun Heo050c8ea2012-02-08 09:19:38 +0100897 return false;
898
Christoph Hellwig288dab82016-06-09 16:00:36 +0200899 if (req_op(rq) != bio_op(bio))
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -0400900 return false;
901
Tejun Heo050c8ea2012-02-08 09:19:38 +0100902 /* different data direction or already started, don't merge */
903 if (bio_data_dir(bio) != rq_data_dir(rq))
904 return false;
905
Jens Axboe2081a562018-10-12 12:39:10 -0600906 /* must be same device */
Christoph Hellwig309dca302021-01-24 11:02:34 +0100907 if (rq->rq_disk != bio->bi_bdev->bd_disk)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100908 return false;
909
910 /* only merge integrity protected bio into ditto rq */
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -0400911 if (blk_integrity_merge_bio(rq->q, rq, bio) == false)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100912 return false;
913
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000914 /* Only merge if the crypt contexts are compatible */
915 if (!bio_crypt_rq_ctx_compatible(rq, bio))
916 return false;
917
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400918 /* must be using the same buffer */
Mike Christie8fe0d472016-06-05 14:32:15 -0500919 if (req_op(rq) == REQ_OP_WRITE_SAME &&
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400920 !blk_write_same_mergeable(rq->bio, bio))
921 return false;
922
Jens Axboecb6934f2017-06-27 09:22:02 -0600923 /*
924 * Don't allow merge of different write hints, or for a hint with
925 * non-hint IO.
926 */
927 if (rq->write_hint != bio->bi_write_hint)
928 return false;
929
Damien Le Moal668ffc02018-11-20 10:52:37 +0900930 if (rq->ioprio != bio_prio(bio))
931 return false;
932
Tejun Heo050c8ea2012-02-08 09:19:38 +0100933 return true;
934}
935
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100936enum elv_merge blk_try_merge(struct request *rq, struct bio *bio)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100937{
Jianchao Wang698404662018-10-27 19:52:14 +0800938 if (blk_discard_mergable(rq))
Christoph Hellwig1e739732017-02-08 14:46:49 +0100939 return ELEVATOR_DISCARD_MERGE;
940 else if (blk_rq_pos(rq) + blk_rq_sectors(rq) == bio->bi_iter.bi_sector)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100941 return ELEVATOR_BACK_MERGE;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700942 else if (blk_rq_pos(rq) - bio_sectors(bio) == bio->bi_iter.bi_sector)
Tejun Heo050c8ea2012-02-08 09:19:38 +0100943 return ELEVATOR_FRONT_MERGE;
944 return ELEVATOR_NO_MERGE;
945}
Baolin Wang8e756372020-08-28 10:52:54 +0800946
947static void blk_account_io_merge_bio(struct request *req)
948{
949 if (!blk_do_io_stat(req))
950 return;
951
952 part_stat_lock();
953 part_stat_inc(req->part, merges[op_stat_group(req_op(req))]);
954 part_stat_unlock();
955}
956
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200957enum bio_merge_status {
958 BIO_MERGE_OK,
959 BIO_MERGE_NONE,
960 BIO_MERGE_FAILED,
961};
962
963static enum bio_merge_status bio_attempt_back_merge(struct request *req,
964 struct bio *bio, unsigned int nr_segs)
Baolin Wang8e756372020-08-28 10:52:54 +0800965{
966 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
967
968 if (!ll_back_merge_fn(req, bio, nr_segs))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800969 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +0800970
Christoph Hellwige8a676d2020-12-03 17:21:36 +0100971 trace_block_bio_backmerge(bio);
Baolin Wang8e756372020-08-28 10:52:54 +0800972 rq_qos_merge(req->q, req, bio);
973
974 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
975 blk_rq_set_mixed_merge(req);
976
977 req->biotail->bi_next = bio;
978 req->biotail = bio;
979 req->__data_len += bio->bi_iter.bi_size;
980
981 bio_crypt_free_ctx(bio);
982
983 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800984 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +0800985}
986
Christoph Hellwigeda5cc92020-10-06 09:07:19 +0200987static enum bio_merge_status bio_attempt_front_merge(struct request *req,
988 struct bio *bio, unsigned int nr_segs)
Baolin Wang8e756372020-08-28 10:52:54 +0800989{
990 const int ff = bio->bi_opf & REQ_FAILFAST_MASK;
991
992 if (!ll_front_merge_fn(req, bio, nr_segs))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +0800993 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +0800994
Christoph Hellwige8a676d2020-12-03 17:21:36 +0100995 trace_block_bio_frontmerge(bio);
Baolin Wang8e756372020-08-28 10:52:54 +0800996 rq_qos_merge(req->q, req, bio);
997
998 if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
999 blk_rq_set_mixed_merge(req);
1000
1001 bio->bi_next = req->bio;
1002 req->bio = bio;
1003
1004 req->__sector = bio->bi_iter.bi_sector;
1005 req->__data_len += bio->bi_iter.bi_size;
1006
1007 bio_crypt_do_front_merge(req, bio);
1008
1009 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001010 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +08001011}
1012
Christoph Hellwigeda5cc92020-10-06 09:07:19 +02001013static enum bio_merge_status bio_attempt_discard_merge(struct request_queue *q,
1014 struct request *req, struct bio *bio)
Baolin Wang8e756372020-08-28 10:52:54 +08001015{
1016 unsigned short segments = blk_rq_nr_discard_segments(req);
1017
1018 if (segments >= queue_max_discard_segments(q))
1019 goto no_merge;
1020 if (blk_rq_sectors(req) + bio_sectors(bio) >
1021 blk_rq_get_max_sectors(req, blk_rq_pos(req)))
1022 goto no_merge;
1023
1024 rq_qos_merge(q, req, bio);
1025
1026 req->biotail->bi_next = bio;
1027 req->biotail = bio;
1028 req->__data_len += bio->bi_iter.bi_size;
1029 req->nr_phys_segments = segments + 1;
1030
1031 blk_account_io_merge_bio(req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001032 return BIO_MERGE_OK;
Baolin Wang8e756372020-08-28 10:52:54 +08001033no_merge:
1034 req_set_nomerge(q, req);
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001035 return BIO_MERGE_FAILED;
1036}
1037
1038static enum bio_merge_status blk_attempt_bio_merge(struct request_queue *q,
1039 struct request *rq,
1040 struct bio *bio,
1041 unsigned int nr_segs,
1042 bool sched_allow_merge)
1043{
1044 if (!blk_rq_merge_ok(rq, bio))
1045 return BIO_MERGE_NONE;
1046
1047 switch (blk_try_merge(rq, bio)) {
1048 case ELEVATOR_BACK_MERGE:
Baolin Wang265600b2020-09-02 09:45:25 +08001049 if (!sched_allow_merge || blk_mq_sched_allow_merge(q, rq, bio))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001050 return bio_attempt_back_merge(rq, bio, nr_segs);
1051 break;
1052 case ELEVATOR_FRONT_MERGE:
Baolin Wang265600b2020-09-02 09:45:25 +08001053 if (!sched_allow_merge || blk_mq_sched_allow_merge(q, rq, bio))
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001054 return bio_attempt_front_merge(rq, bio, nr_segs);
1055 break;
1056 case ELEVATOR_DISCARD_MERGE:
1057 return bio_attempt_discard_merge(q, rq, bio);
1058 default:
1059 return BIO_MERGE_NONE;
1060 }
1061
1062 return BIO_MERGE_FAILED;
Baolin Wang8e756372020-08-28 10:52:54 +08001063}
1064
1065/**
1066 * blk_attempt_plug_merge - try to merge with %current's plugged list
1067 * @q: request_queue new bio is being queued at
1068 * @bio: new bio being queued
1069 * @nr_segs: number of segments in @bio
Jens Axboe87c037d2021-10-18 10:07:09 -06001070 * @same_queue_rq: output value, will be true if there's an existing request
1071 * from the passed in @q already in the plug list
Baolin Wang8e756372020-08-28 10:52:54 +08001072 *
Jens Axboed38a9c02021-10-14 07:24:07 -06001073 * Determine whether @bio being queued on @q can be merged with the previous
1074 * request on %current's plugged list. Returns %true if merge was successful,
Baolin Wang8e756372020-08-28 10:52:54 +08001075 * otherwise %false.
1076 *
1077 * Plugging coalesces IOs from the same issuer for the same purpose without
1078 * going through @q->queue_lock. As such it's more of an issuing mechanism
1079 * than scheduling, and the request, while may have elvpriv data, is not
1080 * added on the elevator at this point. In addition, we don't have
1081 * reliable access to the elevator outside queue lock. Only check basic
1082 * merging parameters without querying the elevator.
1083 *
1084 * Caller must ensure !blk_queue_nomerges(q) beforehand.
1085 */
1086bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
Jens Axboe87c037d2021-10-18 10:07:09 -06001087 unsigned int nr_segs, bool *same_queue_rq)
Baolin Wang8e756372020-08-28 10:52:54 +08001088{
1089 struct blk_plug *plug;
1090 struct request *rq;
Baolin Wang8e756372020-08-28 10:52:54 +08001091
1092 plug = blk_mq_plug(q, bio);
Jens Axboebc490f82021-10-18 10:12:12 -06001093 if (!plug || rq_list_empty(plug->mq_list))
Baolin Wang8e756372020-08-28 10:52:54 +08001094 return false;
1095
Jens Axboed38a9c02021-10-14 07:24:07 -06001096 /* check the previously added entry for a quick merge attempt */
Jens Axboebc490f82021-10-18 10:12:12 -06001097 rq = rq_list_peek(&plug->mq_list);
Jens Axboe87c037d2021-10-18 10:07:09 -06001098 if (rq->q == q) {
Jens Axboed38a9c02021-10-14 07:24:07 -06001099 /*
1100 * Only blk-mq multiple hardware queues case checks the rq in
1101 * the same queue, there should be only one such rq in a queue
1102 */
Jens Axboe87c037d2021-10-18 10:07:09 -06001103 *same_queue_rq = true;
Ming Leia1cb6532021-11-02 21:35:00 +08001104
1105 if (blk_attempt_bio_merge(q, rq, bio, nr_segs, false) ==
1106 BIO_MERGE_OK)
1107 return true;
Baolin Wang8e756372020-08-28 10:52:54 +08001108 }
Baolin Wang8e756372020-08-28 10:52:54 +08001109 return false;
1110}
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001111
1112/*
1113 * Iterate list of requests and see if we can merge this bio with any
1114 * of them.
1115 */
1116bool blk_bio_list_merge(struct request_queue *q, struct list_head *list,
1117 struct bio *bio, unsigned int nr_segs)
1118{
1119 struct request *rq;
1120 int checked = 8;
1121
1122 list_for_each_entry_reverse(rq, list, queuelist) {
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001123 if (!checked--)
1124 break;
1125
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001126 switch (blk_attempt_bio_merge(q, rq, bio, nr_segs, true)) {
1127 case BIO_MERGE_NONE:
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001128 continue;
Baolin Wang7d7ca7c2020-08-28 10:52:56 +08001129 case BIO_MERGE_OK:
1130 return true;
1131 case BIO_MERGE_FAILED:
1132 return false;
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001133 }
1134
Baolin Wangbdc6a2872020-08-28 10:52:55 +08001135 }
1136
1137 return false;
1138}
1139EXPORT_SYMBOL_GPL(blk_bio_list_merge);
Christoph Hellwigeda5cc92020-10-06 09:07:19 +02001140
1141bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
1142 unsigned int nr_segs, struct request **merged_request)
1143{
1144 struct request *rq;
1145
1146 switch (elv_merge(q, &rq, bio)) {
1147 case ELEVATOR_BACK_MERGE:
1148 if (!blk_mq_sched_allow_merge(q, rq, bio))
1149 return false;
1150 if (bio_attempt_back_merge(rq, bio, nr_segs) != BIO_MERGE_OK)
1151 return false;
1152 *merged_request = attempt_back_merge(q, rq);
1153 if (!*merged_request)
1154 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
1155 return true;
1156 case ELEVATOR_FRONT_MERGE:
1157 if (!blk_mq_sched_allow_merge(q, rq, bio))
1158 return false;
1159 if (bio_attempt_front_merge(rq, bio, nr_segs) != BIO_MERGE_OK)
1160 return false;
1161 *merged_request = attempt_front_merge(q, rq);
1162 if (!*merged_request)
1163 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
1164 return true;
1165 case ELEVATOR_DISCARD_MERGE:
1166 return bio_attempt_discard_merge(q, rq, bio) == BIO_MERGE_OK;
1167 default:
1168 return false;
1169 }
1170}
1171EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);