blob: 579ab6183d4d811c5c6697b60ecb21a44ade2a52 [file] [log] [blame]
Mike Snitzer4cc96132016-05-12 16:28:10 -04001/*
2 * Copyright (C) 2016 Red Hat, Inc. All rights reserved.
3 *
4 * This file is released under the GPL.
5 */
6
7#include "dm-core.h"
8#include "dm-rq.h"
9
Mike Snitzer4cc96132016-05-12 16:28:10 -040010#include <linux/blk-mq.h>
11
12#define DM_MSG_PREFIX "core-rq"
13
Mike Snitzere689fba2019-02-20 15:37:44 -050014/*
15 * One of these is allocated per request.
16 */
17struct dm_rq_target_io {
18 struct mapped_device *md;
19 struct dm_target *ti;
20 struct request *orig, *clone;
21 struct kthread_work work;
22 blk_status_t error;
23 union map_info info;
24 struct dm_stats_aux stats_aux;
25 unsigned long duration_jiffies;
26 unsigned n_sectors;
27 unsigned completed;
28};
29
Mike Snitzer4cc96132016-05-12 16:28:10 -040030#define DM_MQ_NR_HW_QUEUES 1
31#define DM_MQ_QUEUE_DEPTH 2048
32static unsigned dm_mq_nr_hw_queues = DM_MQ_NR_HW_QUEUES;
33static unsigned dm_mq_queue_depth = DM_MQ_QUEUE_DEPTH;
34
35/*
36 * Request-based DM's mempools' reserved IOs set by the user.
37 */
38#define RESERVED_REQUEST_BASED_IOS 256
39static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
40
Mike Snitzer4cc96132016-05-12 16:28:10 -040041unsigned dm_get_reserved_rq_based_ios(void)
42{
43 return __dm_get_module_param(&reserved_rq_based_ios,
44 RESERVED_REQUEST_BASED_IOS, DM_RESERVED_MAX_IOS);
45}
46EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
47
48static unsigned dm_get_blk_mq_nr_hw_queues(void)
49{
50 return __dm_get_module_param(&dm_mq_nr_hw_queues, 1, 32);
51}
52
53static unsigned dm_get_blk_mq_queue_depth(void)
54{
55 return __dm_get_module_param(&dm_mq_queue_depth,
56 DM_MQ_QUEUE_DEPTH, BLK_MQ_MAX_DEPTH);
57}
58
59int dm_request_based(struct mapped_device *md)
60{
Jens Axboe344e9ff2018-11-15 12:22:51 -070061 return queue_is_mq(md->queue);
Mike Snitzer4cc96132016-05-12 16:28:10 -040062}
63
Jens Axboe6a23e052018-10-10 20:49:26 -060064void dm_start_queue(struct request_queue *q)
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040065{
Ming Leif6601742017-06-06 23:22:04 +080066 blk_mq_unquiesce_queue(q);
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040067 blk_mq_kick_requeue_list(q);
68}
69
Jens Axboe6a23e052018-10-10 20:49:26 -060070void dm_stop_queue(struct request_queue *q)
Bart Van Assche2397a152016-08-31 15:18:11 -070071{
Bart Van Assche7b17c2f2016-10-28 17:22:16 -070072 blk_mq_quiesce_queue(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -040073}
74
Mike Snitzer4cc96132016-05-12 16:28:10 -040075/*
76 * Partial completion handling for request-based dm
77 */
78static void end_clone_bio(struct bio *clone)
79{
80 struct dm_rq_clone_bio_info *info =
81 container_of(clone, struct dm_rq_clone_bio_info, clone);
82 struct dm_rq_target_io *tio = info->tio;
Mike Snitzer4cc96132016-05-12 16:28:10 -040083 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020084 blk_status_t error = clone->bi_status;
Ming Leidc6364b2017-08-24 20:19:52 +080085 bool is_last = !clone->bi_next;
Mike Snitzer4cc96132016-05-12 16:28:10 -040086
87 bio_put(clone);
88
89 if (tio->error)
90 /*
91 * An error has already been detected on the request.
92 * Once error occurred, just let clone->end_io() handle
93 * the remainder.
94 */
95 return;
96 else if (error) {
97 /*
98 * Don't notice the error to the upper layer yet.
99 * The error handling decision is made by the target driver,
100 * when the request is completed.
101 */
102 tio->error = error;
Ming Leidc6364b2017-08-24 20:19:52 +0800103 goto exit;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400104 }
105
106 /*
107 * I/O for the bio successfully completed.
108 * Notice the data completion to the upper layer.
109 */
Ming Leidc6364b2017-08-24 20:19:52 +0800110 tio->completed += nr_bytes;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400111
112 /*
113 * Update the original request.
Pavel Begunkovd370ad22019-06-20 20:50:50 +0300114 * Do not use blk_mq_end_request() here, because it may complete
Mike Snitzer4cc96132016-05-12 16:28:10 -0400115 * the original request before the clone, and break the ordering.
116 */
Ming Leidc6364b2017-08-24 20:19:52 +0800117 if (is_last)
118 exit:
119 blk_update_request(tio->orig, BLK_STS_OK, tio->completed);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400120}
121
122static struct dm_rq_target_io *tio_from_request(struct request *rq)
123{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100124 return blk_mq_rq_to_pdu(rq);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400125}
126
127static void rq_end_stats(struct mapped_device *md, struct request *orig)
128{
129 if (unlikely(dm_stats_used(&md->stats))) {
130 struct dm_rq_target_io *tio = tio_from_request(orig);
131 tio->duration_jiffies = jiffies - tio->duration_jiffies;
132 dm_stats_account_io(&md->stats, rq_data_dir(orig),
133 blk_rq_pos(orig), tio->n_sectors, true,
134 tio->duration_jiffies, &tio->stats_aux);
135 }
136}
137
138/*
139 * Don't touch any member of the md after calling this function because
140 * the md may be freed in dm_put() at the end of this function.
141 * Or do dm_get() before calling this function and dm_put() later.
142 */
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500143static void rq_completed(struct mapped_device *md)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400144{
Mike Snitzer4cc96132016-05-12 16:28:10 -0400145 /*
Mike Snitzer4cc96132016-05-12 16:28:10 -0400146 * dm_put() must be at the end of this function. See the comment above
147 */
148 dm_put(md);
149}
150
Mike Snitzer4cc96132016-05-12 16:28:10 -0400151/*
152 * Complete the clone and the original request.
153 * Must be called without clone's queue lock held,
154 * see end_clone_request() for more details.
155 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200156static void dm_end_request(struct request *clone, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400157{
Mike Snitzer4cc96132016-05-12 16:28:10 -0400158 struct dm_rq_target_io *tio = clone->end_io_data;
159 struct mapped_device *md = tio->md;
160 struct request *rq = tio->orig;
161
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100162 blk_rq_unprep_clone(clone);
Yufen Yu5de719e2019-04-24 23:19:05 +0800163 tio->ti->type->release_clone_rq(clone, NULL);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400164
Mike Snitzer4cc96132016-05-12 16:28:10 -0400165 rq_end_stats(md, rq);
Jens Axboe6a23e052018-10-10 20:49:26 -0600166 blk_mq_end_request(rq, error);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500167 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400168}
169
Mike Snitzere0c10752016-09-14 10:36:39 -0400170static void __dm_mq_kick_requeue_list(struct request_queue *q, unsigned long msecs)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400171{
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700172 blk_mq_delay_kick_requeue_list(q, msecs);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400173}
174
Mike Snitzere0c10752016-09-14 10:36:39 -0400175void dm_mq_kick_requeue_list(struct mapped_device *md)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400176{
Mike Snitzer33bd6f02020-09-19 13:09:11 -0400177 __dm_mq_kick_requeue_list(md->queue, 0);
Mike Snitzere0c10752016-09-14 10:36:39 -0400178}
179EXPORT_SYMBOL(dm_mq_kick_requeue_list);
180
181static void dm_mq_delay_requeue_request(struct request *rq, unsigned long msecs)
182{
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700183 blk_mq_requeue_request(rq, false);
Mike Snitzere0c10752016-09-14 10:36:39 -0400184 __dm_mq_kick_requeue_list(rq->q, msecs);
185}
186
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400187static void dm_requeue_original_request(struct dm_rq_target_io *tio, bool delay_requeue)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400188{
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400189 struct mapped_device *md = tio->md;
190 struct request *rq = tio->orig;
Bart Van Assched5c27f3f2017-08-09 11:32:16 -0700191 unsigned long delay_ms = delay_requeue ? 100 : 0;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400192
193 rq_end_stats(md, rq);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100194 if (tio->clone) {
195 blk_rq_unprep_clone(tio->clone);
Yufen Yu5de719e2019-04-24 23:19:05 +0800196 tio->ti->type->release_clone_rq(tio->clone, NULL);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100197 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400198
Jens Axboe6a23e052018-10-10 20:49:26 -0600199 dm_mq_delay_requeue_request(rq, delay_ms);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500200 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400201}
202
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200203static void dm_done(struct request *clone, blk_status_t error, bool mapped)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400204{
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200205 int r = DM_ENDIO_DONE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400206 struct dm_rq_target_io *tio = clone->end_io_data;
207 dm_request_endio_fn rq_end_io = NULL;
208
209 if (tio->ti) {
210 rq_end_io = tio->ti->type->rq_end_io;
211
212 if (mapped && rq_end_io)
213 r = rq_end_io(tio->ti, clone, error, &tio->info);
214 }
215
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200216 if (unlikely(error == BLK_STS_TARGET)) {
Mike Snitzerbcb44432019-04-03 12:23:11 -0400217 if (req_op(clone) == REQ_OP_DISCARD &&
218 !clone->q->limits.max_discard_sectors)
219 disable_discard(tio->md);
220 else if (req_op(clone) == REQ_OP_WRITE_SAME &&
221 !clone->q->limits.max_write_same_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200222 disable_write_same(tio->md);
Mike Snitzerbcb44432019-04-03 12:23:11 -0400223 else if (req_op(clone) == REQ_OP_WRITE_ZEROES &&
224 !clone->q->limits.max_write_zeroes_sectors)
Christoph Hellwigac62d622017-04-05 19:21:05 +0200225 disable_write_zeroes(tio->md);
226 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400227
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200228 switch (r) {
229 case DM_ENDIO_DONE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400230 /* The target wants to complete the I/O */
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200231 dm_end_request(clone, error);
232 break;
233 case DM_ENDIO_INCOMPLETE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400234 /* The target will handle the I/O */
235 return;
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200236 case DM_ENDIO_REQUEUE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400237 /* The target wants to requeue the I/O */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400238 dm_requeue_original_request(tio, false);
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200239 break;
Mike Snitzerac514ff2018-01-12 19:53:40 -0500240 case DM_ENDIO_DELAY_REQUEUE:
241 /* The target wants to requeue the I/O after a delay */
242 dm_requeue_original_request(tio, true);
243 break;
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200244 default:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400245 DMWARN("unimplemented target endio return value: %d", r);
246 BUG();
247 }
248}
249
250/*
251 * Request completion handler for request-based dm
252 */
253static void dm_softirq_done(struct request *rq)
254{
255 bool mapped = true;
256 struct dm_rq_target_io *tio = tio_from_request(rq);
257 struct request *clone = tio->clone;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400258
259 if (!clone) {
Jens Axboe61febef2017-02-24 13:19:32 -0700260 struct mapped_device *md = tio->md;
261
262 rq_end_stats(md, rq);
Jens Axboe6a23e052018-10-10 20:49:26 -0600263 blk_mq_end_request(rq, tio->error);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500264 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400265 return;
266 }
267
Christoph Hellwige8064022016-10-20 15:12:13 +0200268 if (rq->rq_flags & RQF_FAILED)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400269 mapped = false;
270
271 dm_done(clone, tio->error, mapped);
272}
273
274/*
275 * Complete the clone and the original request with the error status
276 * through softirq context.
277 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200278static void dm_complete_request(struct request *rq, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400279{
280 struct dm_rq_target_io *tio = tio_from_request(rq);
281
282 tio->error = error;
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200283 if (likely(!blk_should_fake_timeout(rq->q)))
284 blk_mq_complete_request(rq);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400285}
286
287/*
288 * Complete the not-mapped clone and the original request with the error status
289 * through softirq context.
290 * Target's rq_end_io() function isn't called.
Jens Axboe6a23e052018-10-10 20:49:26 -0600291 * This may be used when the target's clone_and_map_rq() function fails.
Mike Snitzer4cc96132016-05-12 16:28:10 -0400292 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200293static void dm_kill_unmapped_request(struct request *rq, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400294{
Christoph Hellwige8064022016-10-20 15:12:13 +0200295 rq->rq_flags |= RQF_FAILED;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400296 dm_complete_request(rq, error);
297}
298
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200299static void end_clone_request(struct request *clone, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400300{
301 struct dm_rq_target_io *tio = clone->end_io_data;
302
Mike Snitzer4cc96132016-05-12 16:28:10 -0400303 dm_complete_request(tio->orig, error);
304}
305
Ming Lei396eaf22018-01-17 11:25:57 -0500306static blk_status_t dm_dispatch_clone_request(struct request *clone, struct request *rq)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400307{
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200308 blk_status_t r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400309
310 if (blk_queue_io_stat(clone->q))
Christoph Hellwige8064022016-10-20 15:12:13 +0200311 clone->rq_flags |= RQF_IO_STAT;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400312
Omar Sandoval522a7772018-05-09 02:08:53 -0700313 clone->start_time_ns = ktime_get_ns();
Mike Snitzer4cc96132016-05-12 16:28:10 -0400314 r = blk_insert_cloned_request(clone->q, clone);
Ming Lei86ff7c22018-01-30 22:04:57 -0500315 if (r != BLK_STS_OK && r != BLK_STS_RESOURCE && r != BLK_STS_DEV_RESOURCE)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400316 /* must complete clone in terms of original request */
317 dm_complete_request(rq, r);
Ming Lei396eaf22018-01-17 11:25:57 -0500318 return r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400319}
320
321static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
322 void *data)
323{
324 struct dm_rq_target_io *tio = data;
325 struct dm_rq_clone_bio_info *info =
326 container_of(bio, struct dm_rq_clone_bio_info, clone);
327
328 info->orig = bio_orig;
329 info->tio = tio;
330 bio->bi_end_io = end_clone_bio;
331
332 return 0;
333}
334
335static int setup_clone(struct request *clone, struct request *rq,
336 struct dm_rq_target_io *tio, gfp_t gfp_mask)
337{
338 int r;
339
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400340 r = blk_rq_prep_clone(clone, rq, &tio->md->bs, gfp_mask,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400341 dm_rq_bio_constructor, tio);
342 if (r)
343 return r;
344
Mike Snitzer4cc96132016-05-12 16:28:10 -0400345 clone->end_io = end_clone_request;
346 clone->end_io_data = tio;
347
348 tio->clone = clone;
349
350 return 0;
351}
352
Mike Snitzer4cc96132016-05-12 16:28:10 -0400353static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
354 struct mapped_device *md)
355{
356 tio->md = md;
357 tio->ti = NULL;
358 tio->clone = NULL;
359 tio->orig = rq;
360 tio->error = 0;
Ming Leidc6364b2017-08-24 20:19:52 +0800361 tio->completed = 0;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400362 /*
363 * Avoid initializing info for blk-mq; it passes
364 * target-specific data through info.ptr
365 * (see: dm_mq_init_request)
366 */
367 if (!md->init_tio_pdu)
368 memset(&tio->info, 0, sizeof(tio->info));
Mike Snitzer4cc96132016-05-12 16:28:10 -0400369}
370
Mike Snitzer4cc96132016-05-12 16:28:10 -0400371/*
372 * Returns:
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400373 * DM_MAPIO_* : the request has been processed as indicated
374 * DM_MAPIO_REQUEUE : the original request needs to be immediately requeued
Mike Snitzer4cc96132016-05-12 16:28:10 -0400375 * < 0 : the request was completed due to failure
376 */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400377static int map_request(struct dm_rq_target_io *tio)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400378{
379 int r;
380 struct dm_target *ti = tio->ti;
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400381 struct mapped_device *md = tio->md;
382 struct request *rq = tio->orig;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400383 struct request *clone = NULL;
Ming Lei396eaf22018-01-17 11:25:57 -0500384 blk_status_t ret;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400385
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100386 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400387 switch (r) {
388 case DM_MAPIO_SUBMITTED:
389 /* The target has taken the I/O to submit by itself later */
390 break;
391 case DM_MAPIO_REMAPPED:
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100392 if (setup_clone(clone, rq, tio, GFP_ATOMIC)) {
393 /* -ENOMEM */
Yufen Yu5de719e2019-04-24 23:19:05 +0800394 ti->type->release_clone_rq(clone, &tio->info);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100395 return DM_MAPIO_REQUEUE;
396 }
397
Mike Snitzer4cc96132016-05-12 16:28:10 -0400398 /* The target has remapped the I/O so dispatch it */
Christoph Hellwiga54895f2020-12-03 17:21:39 +0100399 trace_block_rq_remap(clone, disk_devt(dm_disk(md)),
Mike Snitzer4cc96132016-05-12 16:28:10 -0400400 blk_rq_pos(rq));
Ming Lei396eaf22018-01-17 11:25:57 -0500401 ret = dm_dispatch_clone_request(clone, rq);
Ming Lei86ff7c22018-01-30 22:04:57 -0500402 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE) {
Ming Lei396eaf22018-01-17 11:25:57 -0500403 blk_rq_unprep_clone(clone);
Ming Lei226b4fc2019-07-25 10:04:59 +0800404 blk_mq_cleanup_rq(clone);
Yufen Yu5de719e2019-04-24 23:19:05 +0800405 tio->ti->type->release_clone_rq(clone, &tio->info);
Ming Lei396eaf22018-01-17 11:25:57 -0500406 tio->clone = NULL;
Mike Snitzer34743bf2018-12-10 11:55:56 -0500407 return DM_MAPIO_REQUEUE;
Ming Lei396eaf22018-01-17 11:25:57 -0500408 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400409 break;
410 case DM_MAPIO_REQUEUE:
411 /* The target wants to requeue the I/O */
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400412 break;
413 case DM_MAPIO_DELAY_REQUEUE:
414 /* The target wants to requeue the I/O after a delay */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400415 dm_requeue_original_request(tio, true);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400416 break;
Christoph Hellwig412445a2017-04-26 09:40:39 +0200417 case DM_MAPIO_KILL:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400418 /* The target wants to complete the I/O */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200419 dm_kill_unmapped_request(rq, BLK_STS_IOERR);
Christoph Hellwigece07282017-05-15 17:28:36 +0200420 break;
Christoph Hellwig412445a2017-04-26 09:40:39 +0200421 default:
422 DMWARN("unimplemented target map return value: %d", r);
423 BUG();
Mike Snitzer4cc96132016-05-12 16:28:10 -0400424 }
425
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400426 return r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400427}
428
Jens Axboe6a23e052018-10-10 20:49:26 -0600429/* DEPRECATED: previously used for request-based merge heuristic in dm_request_fn() */
430ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
431{
432 return sprintf(buf, "%u\n", 0);
433}
434
435ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
436 const char *buf, size_t count)
437{
438 return count;
439}
440
Mike Snitzer4cc96132016-05-12 16:28:10 -0400441static void dm_start_request(struct mapped_device *md, struct request *orig)
442{
Jens Axboe6a23e052018-10-10 20:49:26 -0600443 blk_mq_start_request(orig);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400444
Mike Snitzer4cc96132016-05-12 16:28:10 -0400445 if (unlikely(dm_stats_used(&md->stats))) {
446 struct dm_rq_target_io *tio = tio_from_request(orig);
447 tio->duration_jiffies = jiffies;
448 tio->n_sectors = blk_rq_sectors(orig);
449 dm_stats_account_io(&md->stats, rq_data_dir(orig),
450 blk_rq_pos(orig), tio->n_sectors, false, 0,
451 &tio->stats_aux);
452 }
453
454 /*
455 * Hold the md reference here for the in-flight I/O.
456 * We can't rely on the reference count by device opener,
457 * because the device may be closed during the request completion
458 * when all bios are completed.
459 * See the comment in rq_completed() too.
460 */
461 dm_get(md);
462}
463
Jens Axboe6a23e052018-10-10 20:49:26 -0600464static int dm_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
465 unsigned int hctx_idx, unsigned int numa_node)
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100466{
Jens Axboe6a23e052018-10-10 20:49:26 -0600467 struct mapped_device *md = set->driver_data;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100468 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
469
470 /*
471 * Must initialize md member of tio, otherwise it won't
472 * be available in dm_mq_queue_rq.
473 */
474 tio->md = md;
475
476 if (md->init_tio_pdu) {
477 /* target-specific per-io data is immediately after the tio */
478 tio->info.ptr = tio + 1;
479 }
480
481 return 0;
482}
483
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200484static blk_status_t dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400485 const struct blk_mq_queue_data *bd)
486{
487 struct request *rq = bd->rq;
488 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
489 struct mapped_device *md = tio->md;
490 struct dm_target *ti = md->immutable_target;
491
Ming Leib4459b12021-09-23 17:11:31 +0800492 /*
493 * blk-mq's unquiesce may come from outside events, such as
494 * elevator switch, updating nr_requests or others, and request may
495 * come during suspend, so simply ask for blk-mq to requeue it.
496 */
497 if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)))
498 return BLK_STS_RESOURCE;
499
Mike Snitzer4cc96132016-05-12 16:28:10 -0400500 if (unlikely(!ti)) {
501 int srcu_idx;
502 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
503
504 ti = dm_table_find_target(map, 0);
505 dm_put_live_table(md, srcu_idx);
506 }
507
508 if (ti->type->busy && ti->type->busy(ti))
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200509 return BLK_STS_RESOURCE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400510
511 dm_start_request(md, rq);
512
513 /* Init tio using md established in .init_request */
514 init_tio(tio, rq, md);
515
516 /*
517 * Establish tio->ti before calling map_request().
518 */
519 tio->ti = ti;
520
521 /* Direct call is fine since .queue_rq allows allocations */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400522 if (map_request(tio) == DM_MAPIO_REQUEUE) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400523 /* Undo dm_start_request() before requeuing */
524 rq_end_stats(md, rq);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500525 rq_completed(md);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200526 return BLK_STS_RESOURCE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400527 }
528
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200529 return BLK_STS_OK;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400530}
531
Eric Biggersf363b082017-03-30 13:39:16 -0700532static const struct blk_mq_ops dm_mq_ops = {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400533 .queue_rq = dm_mq_queue_rq,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400534 .complete = dm_softirq_done,
535 .init_request = dm_mq_init_request,
536};
537
Mike Snitzere83068a2016-05-24 21:16:51 -0400538int dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400539{
Mike Snitzere83068a2016-05-24 21:16:51 -0400540 struct dm_target *immutable_tgt;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400541 int err;
542
Mike Snitzer4cc96132016-05-12 16:28:10 -0400543 md->tag_set = kzalloc_node(sizeof(struct blk_mq_tag_set), GFP_KERNEL, md->numa_node_id);
544 if (!md->tag_set)
545 return -ENOMEM;
546
547 md->tag_set->ops = &dm_mq_ops;
548 md->tag_set->queue_depth = dm_get_blk_mq_queue_depth();
549 md->tag_set->numa_node = md->numa_node_id;
Ming Leibf0beec2020-05-29 15:53:15 +0200550 md->tag_set->flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_STACKING;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400551 md->tag_set->nr_hw_queues = dm_get_blk_mq_nr_hw_queues();
552 md->tag_set->driver_data = md;
553
554 md->tag_set->cmd_size = sizeof(struct dm_rq_target_io);
Mike Snitzere83068a2016-05-24 21:16:51 -0400555 immutable_tgt = dm_table_get_immutable_target(t);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400556 if (immutable_tgt && immutable_tgt->per_io_data_size) {
557 /* any target-specific per-io data is immediately after the tio */
558 md->tag_set->cmd_size += immutable_tgt->per_io_data_size;
559 md->init_tio_pdu = true;
560 }
561
562 err = blk_mq_alloc_tag_set(md->tag_set);
563 if (err)
564 goto out_kfree_tag_set;
565
Christoph Hellwig26a97502021-06-02 09:53:17 +0300566 err = blk_mq_init_allocated_queue(md->tag_set, md->queue);
567 if (err)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400568 goto out_tag_set;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400569 return 0;
570
Mike Snitzer4cc96132016-05-12 16:28:10 -0400571out_tag_set:
572 blk_mq_free_tag_set(md->tag_set);
573out_kfree_tag_set:
574 kfree(md->tag_set);
Benjamin Block8e947c82021-04-29 23:37:00 +0200575 md->tag_set = NULL;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400576
577 return err;
578}
579
580void dm_mq_cleanup_mapped_device(struct mapped_device *md)
581{
582 if (md->tag_set) {
583 blk_mq_free_tag_set(md->tag_set);
584 kfree(md->tag_set);
Benjamin Block8e947c82021-04-29 23:37:00 +0200585 md->tag_set = NULL;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400586 }
587}
588
589module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
590MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
591
Jens Axboe6a23e052018-10-10 20:49:26 -0600592/* Unused, but preserved for userspace compatibility */
593static bool use_blk_mq = true;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400594module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
595MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
596
597module_param(dm_mq_nr_hw_queues, uint, S_IRUGO | S_IWUSR);
598MODULE_PARM_DESC(dm_mq_nr_hw_queues, "Number of hardware queues for request-based dm-mq devices");
599
600module_param(dm_mq_queue_depth, uint, S_IRUGO | S_IWUSR);
601MODULE_PARM_DESC(dm_mq_queue_depth, "Queue depth for request-based dm-mq devices");