blob: a20531e5f3b4c6936f75d0b647b8b05267a6ca03 [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
10#include <linux/elevator.h> /* for rq_end_sector() */
11#include <linux/blk-mq.h>
12
13#define DM_MSG_PREFIX "core-rq"
14
15#define DM_MQ_NR_HW_QUEUES 1
16#define DM_MQ_QUEUE_DEPTH 2048
17static unsigned dm_mq_nr_hw_queues = DM_MQ_NR_HW_QUEUES;
18static unsigned dm_mq_queue_depth = DM_MQ_QUEUE_DEPTH;
19
20/*
21 * Request-based DM's mempools' reserved IOs set by the user.
22 */
23#define RESERVED_REQUEST_BASED_IOS 256
24static unsigned reserved_rq_based_ios = RESERVED_REQUEST_BASED_IOS;
25
Mike Snitzer4cc96132016-05-12 16:28:10 -040026unsigned dm_get_reserved_rq_based_ios(void)
27{
28 return __dm_get_module_param(&reserved_rq_based_ios,
29 RESERVED_REQUEST_BASED_IOS, DM_RESERVED_MAX_IOS);
30}
31EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
32
33static unsigned dm_get_blk_mq_nr_hw_queues(void)
34{
35 return __dm_get_module_param(&dm_mq_nr_hw_queues, 1, 32);
36}
37
38static unsigned dm_get_blk_mq_queue_depth(void)
39{
40 return __dm_get_module_param(&dm_mq_queue_depth,
41 DM_MQ_QUEUE_DEPTH, BLK_MQ_MAX_DEPTH);
42}
43
44int dm_request_based(struct mapped_device *md)
45{
Jens Axboe344e9ff2018-11-15 12:22:51 -070046 return queue_is_mq(md->queue);
Mike Snitzer4cc96132016-05-12 16:28:10 -040047}
48
Jens Axboe6a23e052018-10-10 20:49:26 -060049void dm_start_queue(struct request_queue *q)
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040050{
Ming Leif6601742017-06-06 23:22:04 +080051 blk_mq_unquiesce_queue(q);
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040052 blk_mq_kick_requeue_list(q);
53}
54
Jens Axboe6a23e052018-10-10 20:49:26 -060055void dm_stop_queue(struct request_queue *q)
Bart Van Assche2397a152016-08-31 15:18:11 -070056{
Bart Van Asschef0d33ab2016-10-28 17:22:00 -070057 if (blk_mq_queue_stopped(q))
Mike Snitzer4cc96132016-05-12 16:28:10 -040058 return;
Mike Snitzer4cc96132016-05-12 16:28:10 -040059
Bart Van Assche7b17c2f2016-10-28 17:22:16 -070060 blk_mq_quiesce_queue(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -040061}
62
Mike Snitzer4cc96132016-05-12 16:28:10 -040063/*
64 * Partial completion handling for request-based dm
65 */
66static void end_clone_bio(struct bio *clone)
67{
68 struct dm_rq_clone_bio_info *info =
69 container_of(clone, struct dm_rq_clone_bio_info, clone);
70 struct dm_rq_target_io *tio = info->tio;
Mike Snitzer4cc96132016-05-12 16:28:10 -040071 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +020072 blk_status_t error = clone->bi_status;
Ming Leidc6364b2017-08-24 20:19:52 +080073 bool is_last = !clone->bi_next;
Mike Snitzer4cc96132016-05-12 16:28:10 -040074
75 bio_put(clone);
76
77 if (tio->error)
78 /*
79 * An error has already been detected on the request.
80 * Once error occurred, just let clone->end_io() handle
81 * the remainder.
82 */
83 return;
84 else if (error) {
85 /*
86 * Don't notice the error to the upper layer yet.
87 * The error handling decision is made by the target driver,
88 * when the request is completed.
89 */
90 tio->error = error;
Ming Leidc6364b2017-08-24 20:19:52 +080091 goto exit;
Mike Snitzer4cc96132016-05-12 16:28:10 -040092 }
93
94 /*
95 * I/O for the bio successfully completed.
96 * Notice the data completion to the upper layer.
97 */
Ming Leidc6364b2017-08-24 20:19:52 +080098 tio->completed += nr_bytes;
Mike Snitzer4cc96132016-05-12 16:28:10 -040099
100 /*
101 * Update the original request.
102 * Do not use blk_end_request() here, because it may complete
103 * the original request before the clone, and break the ordering.
104 */
Ming Leidc6364b2017-08-24 20:19:52 +0800105 if (is_last)
106 exit:
107 blk_update_request(tio->orig, BLK_STS_OK, tio->completed);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400108}
109
110static struct dm_rq_target_io *tio_from_request(struct request *rq)
111{
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100112 return blk_mq_rq_to_pdu(rq);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400113}
114
115static void rq_end_stats(struct mapped_device *md, struct request *orig)
116{
117 if (unlikely(dm_stats_used(&md->stats))) {
118 struct dm_rq_target_io *tio = tio_from_request(orig);
119 tio->duration_jiffies = jiffies - tio->duration_jiffies;
120 dm_stats_account_io(&md->stats, rq_data_dir(orig),
121 blk_rq_pos(orig), tio->n_sectors, true,
122 tio->duration_jiffies, &tio->stats_aux);
123 }
124}
125
126/*
127 * Don't touch any member of the md after calling this function because
128 * the md may be freed in dm_put() at the end of this function.
129 * Or do dm_get() before calling this function and dm_put() later.
130 */
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500131static void rq_completed(struct mapped_device *md)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400132{
Mike Snitzer4cc96132016-05-12 16:28:10 -0400133 /* nudge anyone waiting on suspend queue */
Mikulas Patocka645efa82019-02-05 05:09:00 -0500134 if (unlikely(wq_has_sleeper(&md->wait)))
Mike Snitzerc4576ae2018-12-11 09:10:26 -0500135 wake_up(&md->wait);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400136
137 /*
Mike Snitzer4cc96132016-05-12 16:28:10 -0400138 * dm_put() must be at the end of this function. See the comment above
139 */
140 dm_put(md);
141}
142
Mike Snitzer4cc96132016-05-12 16:28:10 -0400143/*
144 * Complete the clone and the original request.
145 * Must be called without clone's queue lock held,
146 * see end_clone_request() for more details.
147 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200148static void dm_end_request(struct request *clone, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400149{
Mike Snitzer4cc96132016-05-12 16:28:10 -0400150 struct dm_rq_target_io *tio = clone->end_io_data;
151 struct mapped_device *md = tio->md;
152 struct request *rq = tio->orig;
153
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100154 blk_rq_unprep_clone(clone);
155 tio->ti->type->release_clone_rq(clone);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400156
Mike Snitzer4cc96132016-05-12 16:28:10 -0400157 rq_end_stats(md, rq);
Jens Axboe6a23e052018-10-10 20:49:26 -0600158 blk_mq_end_request(rq, error);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500159 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400160}
161
Mike Snitzere0c10752016-09-14 10:36:39 -0400162static void __dm_mq_kick_requeue_list(struct request_queue *q, unsigned long msecs)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400163{
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700164 blk_mq_delay_kick_requeue_list(q, msecs);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400165}
166
Mike Snitzere0c10752016-09-14 10:36:39 -0400167void dm_mq_kick_requeue_list(struct mapped_device *md)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400168{
Mike Snitzere0c10752016-09-14 10:36:39 -0400169 __dm_mq_kick_requeue_list(dm_get_md_queue(md), 0);
170}
171EXPORT_SYMBOL(dm_mq_kick_requeue_list);
172
173static void dm_mq_delay_requeue_request(struct request *rq, unsigned long msecs)
174{
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700175 blk_mq_requeue_request(rq, false);
Mike Snitzere0c10752016-09-14 10:36:39 -0400176 __dm_mq_kick_requeue_list(rq->q, msecs);
177}
178
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400179static void dm_requeue_original_request(struct dm_rq_target_io *tio, bool delay_requeue)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400180{
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400181 struct mapped_device *md = tio->md;
182 struct request *rq = tio->orig;
Bart Van Assched5c27f3f2017-08-09 11:32:16 -0700183 unsigned long delay_ms = delay_requeue ? 100 : 0;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400184
185 rq_end_stats(md, rq);
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100186 if (tio->clone) {
187 blk_rq_unprep_clone(tio->clone);
188 tio->ti->type->release_clone_rq(tio->clone);
189 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400190
Jens Axboe6a23e052018-10-10 20:49:26 -0600191 dm_mq_delay_requeue_request(rq, delay_ms);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500192 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400193}
194
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200195static void dm_done(struct request *clone, blk_status_t error, bool mapped)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400196{
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200197 int r = DM_ENDIO_DONE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400198 struct dm_rq_target_io *tio = clone->end_io_data;
199 dm_request_endio_fn rq_end_io = NULL;
200
201 if (tio->ti) {
202 rq_end_io = tio->ti->type->rq_end_io;
203
204 if (mapped && rq_end_io)
205 r = rq_end_io(tio->ti, clone, error, &tio->info);
206 }
207
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200208 if (unlikely(error == BLK_STS_TARGET)) {
Christoph Hellwigac62d622017-04-05 19:21:05 +0200209 if (req_op(clone) == REQ_OP_WRITE_SAME &&
210 !clone->q->limits.max_write_same_sectors)
211 disable_write_same(tio->md);
212 if (req_op(clone) == REQ_OP_WRITE_ZEROES &&
213 !clone->q->limits.max_write_zeroes_sectors)
214 disable_write_zeroes(tio->md);
215 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400216
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200217 switch (r) {
218 case DM_ENDIO_DONE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400219 /* The target wants to complete the I/O */
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200220 dm_end_request(clone, error);
221 break;
222 case DM_ENDIO_INCOMPLETE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400223 /* The target will handle the I/O */
224 return;
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200225 case DM_ENDIO_REQUEUE:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400226 /* The target wants to requeue the I/O */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400227 dm_requeue_original_request(tio, false);
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200228 break;
Mike Snitzerac514ff2018-01-12 19:53:40 -0500229 case DM_ENDIO_DELAY_REQUEUE:
230 /* The target wants to requeue the I/O after a delay */
231 dm_requeue_original_request(tio, true);
232 break;
Christoph Hellwig7ed85782017-04-26 09:40:37 +0200233 default:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400234 DMWARN("unimplemented target endio return value: %d", r);
235 BUG();
236 }
237}
238
239/*
240 * Request completion handler for request-based dm
241 */
242static void dm_softirq_done(struct request *rq)
243{
244 bool mapped = true;
245 struct dm_rq_target_io *tio = tio_from_request(rq);
246 struct request *clone = tio->clone;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400247
248 if (!clone) {
Jens Axboe61febef2017-02-24 13:19:32 -0700249 struct mapped_device *md = tio->md;
250
251 rq_end_stats(md, rq);
Jens Axboe6a23e052018-10-10 20:49:26 -0600252 blk_mq_end_request(rq, tio->error);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500253 rq_completed(md);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400254 return;
255 }
256
Christoph Hellwige8064022016-10-20 15:12:13 +0200257 if (rq->rq_flags & RQF_FAILED)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400258 mapped = false;
259
260 dm_done(clone, tio->error, mapped);
261}
262
263/*
264 * Complete the clone and the original request with the error status
265 * through softirq context.
266 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200267static void dm_complete_request(struct request *rq, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400268{
269 struct dm_rq_target_io *tio = tio_from_request(rq);
270
271 tio->error = error;
Jens Axboe6a23e052018-10-10 20:49:26 -0600272 blk_mq_complete_request(rq);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400273}
274
275/*
276 * Complete the not-mapped clone and the original request with the error status
277 * through softirq context.
278 * Target's rq_end_io() function isn't called.
Jens Axboe6a23e052018-10-10 20:49:26 -0600279 * This may be used when the target's clone_and_map_rq() function fails.
Mike Snitzer4cc96132016-05-12 16:28:10 -0400280 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200281static void dm_kill_unmapped_request(struct request *rq, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400282{
Christoph Hellwige8064022016-10-20 15:12:13 +0200283 rq->rq_flags |= RQF_FAILED;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400284 dm_complete_request(rq, error);
285}
286
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200287static void end_clone_request(struct request *clone, blk_status_t error)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400288{
289 struct dm_rq_target_io *tio = clone->end_io_data;
290
Mike Snitzer4cc96132016-05-12 16:28:10 -0400291 dm_complete_request(tio->orig, error);
292}
293
Ming Lei396eaf22018-01-17 11:25:57 -0500294static blk_status_t dm_dispatch_clone_request(struct request *clone, struct request *rq)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400295{
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200296 blk_status_t r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400297
298 if (blk_queue_io_stat(clone->q))
Christoph Hellwige8064022016-10-20 15:12:13 +0200299 clone->rq_flags |= RQF_IO_STAT;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400300
Omar Sandoval522a7772018-05-09 02:08:53 -0700301 clone->start_time_ns = ktime_get_ns();
Mike Snitzer4cc96132016-05-12 16:28:10 -0400302 r = blk_insert_cloned_request(clone->q, clone);
Ming Lei86ff7c22018-01-30 22:04:57 -0500303 if (r != BLK_STS_OK && r != BLK_STS_RESOURCE && r != BLK_STS_DEV_RESOURCE)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400304 /* must complete clone in terms of original request */
305 dm_complete_request(rq, r);
Ming Lei396eaf22018-01-17 11:25:57 -0500306 return r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400307}
308
309static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
310 void *data)
311{
312 struct dm_rq_target_io *tio = data;
313 struct dm_rq_clone_bio_info *info =
314 container_of(bio, struct dm_rq_clone_bio_info, clone);
315
316 info->orig = bio_orig;
317 info->tio = tio;
318 bio->bi_end_io = end_clone_bio;
319
320 return 0;
321}
322
323static int setup_clone(struct request *clone, struct request *rq,
324 struct dm_rq_target_io *tio, gfp_t gfp_mask)
325{
326 int r;
327
Kent Overstreet6f1c8192018-05-20 18:25:53 -0400328 r = blk_rq_prep_clone(clone, rq, &tio->md->bs, gfp_mask,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400329 dm_rq_bio_constructor, tio);
330 if (r)
331 return r;
332
Mike Snitzer4cc96132016-05-12 16:28:10 -0400333 clone->end_io = end_clone_request;
334 clone->end_io_data = tio;
335
336 tio->clone = clone;
337
338 return 0;
339}
340
Mike Snitzer4cc96132016-05-12 16:28:10 -0400341static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
342 struct mapped_device *md)
343{
344 tio->md = md;
345 tio->ti = NULL;
346 tio->clone = NULL;
347 tio->orig = rq;
348 tio->error = 0;
Ming Leidc6364b2017-08-24 20:19:52 +0800349 tio->completed = 0;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400350 /*
351 * Avoid initializing info for blk-mq; it passes
352 * target-specific data through info.ptr
353 * (see: dm_mq_init_request)
354 */
355 if (!md->init_tio_pdu)
356 memset(&tio->info, 0, sizeof(tio->info));
Mike Snitzer4cc96132016-05-12 16:28:10 -0400357}
358
Mike Snitzer4cc96132016-05-12 16:28:10 -0400359/*
360 * Returns:
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400361 * DM_MAPIO_* : the request has been processed as indicated
362 * DM_MAPIO_REQUEUE : the original request needs to be immediately requeued
Mike Snitzer4cc96132016-05-12 16:28:10 -0400363 * < 0 : the request was completed due to failure
364 */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400365static int map_request(struct dm_rq_target_io *tio)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400366{
367 int r;
368 struct dm_target *ti = tio->ti;
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400369 struct mapped_device *md = tio->md;
370 struct request *rq = tio->orig;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400371 struct request *clone = NULL;
Ming Lei396eaf22018-01-17 11:25:57 -0500372 blk_status_t ret;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400373
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100374 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400375 switch (r) {
376 case DM_MAPIO_SUBMITTED:
377 /* The target has taken the I/O to submit by itself later */
378 break;
379 case DM_MAPIO_REMAPPED:
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100380 if (setup_clone(clone, rq, tio, GFP_ATOMIC)) {
381 /* -ENOMEM */
382 ti->type->release_clone_rq(clone);
383 return DM_MAPIO_REQUEUE;
384 }
385
Mike Snitzer4cc96132016-05-12 16:28:10 -0400386 /* The target has remapped the I/O so dispatch it */
387 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
388 blk_rq_pos(rq));
Ming Lei396eaf22018-01-17 11:25:57 -0500389 ret = dm_dispatch_clone_request(clone, rq);
Ming Lei86ff7c22018-01-30 22:04:57 -0500390 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE) {
Ming Lei396eaf22018-01-17 11:25:57 -0500391 blk_rq_unprep_clone(clone);
392 tio->ti->type->release_clone_rq(clone);
393 tio->clone = NULL;
Mike Snitzer34743bf2018-12-10 11:55:56 -0500394 return DM_MAPIO_REQUEUE;
Ming Lei396eaf22018-01-17 11:25:57 -0500395 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400396 break;
397 case DM_MAPIO_REQUEUE:
398 /* The target wants to requeue the I/O */
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400399 break;
400 case DM_MAPIO_DELAY_REQUEUE:
401 /* The target wants to requeue the I/O after a delay */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400402 dm_requeue_original_request(tio, true);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400403 break;
Christoph Hellwig412445a2017-04-26 09:40:39 +0200404 case DM_MAPIO_KILL:
Mike Snitzer4cc96132016-05-12 16:28:10 -0400405 /* The target wants to complete the I/O */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200406 dm_kill_unmapped_request(rq, BLK_STS_IOERR);
Christoph Hellwigece07282017-05-15 17:28:36 +0200407 break;
Christoph Hellwig412445a2017-04-26 09:40:39 +0200408 default:
409 DMWARN("unimplemented target map return value: %d", r);
410 BUG();
Mike Snitzer4cc96132016-05-12 16:28:10 -0400411 }
412
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400413 return r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400414}
415
Jens Axboe6a23e052018-10-10 20:49:26 -0600416/* DEPRECATED: previously used for request-based merge heuristic in dm_request_fn() */
417ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
418{
419 return sprintf(buf, "%u\n", 0);
420}
421
422ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
423 const char *buf, size_t count)
424{
425 return count;
426}
427
Mike Snitzer4cc96132016-05-12 16:28:10 -0400428static void dm_start_request(struct mapped_device *md, struct request *orig)
429{
Jens Axboe6a23e052018-10-10 20:49:26 -0600430 blk_mq_start_request(orig);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400431
Mike Snitzer4cc96132016-05-12 16:28:10 -0400432 if (unlikely(dm_stats_used(&md->stats))) {
433 struct dm_rq_target_io *tio = tio_from_request(orig);
434 tio->duration_jiffies = jiffies;
435 tio->n_sectors = blk_rq_sectors(orig);
436 dm_stats_account_io(&md->stats, rq_data_dir(orig),
437 blk_rq_pos(orig), tio->n_sectors, false, 0,
438 &tio->stats_aux);
439 }
440
441 /*
442 * Hold the md reference here for the in-flight I/O.
443 * We can't rely on the reference count by device opener,
444 * because the device may be closed during the request completion
445 * when all bios are completed.
446 * See the comment in rq_completed() too.
447 */
448 dm_get(md);
449}
450
Jens Axboe6a23e052018-10-10 20:49:26 -0600451static int dm_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
452 unsigned int hctx_idx, unsigned int numa_node)
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100453{
Jens Axboe6a23e052018-10-10 20:49:26 -0600454 struct mapped_device *md = set->driver_data;
Christoph Hellwigeb8db832017-01-22 18:32:46 +0100455 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
456
457 /*
458 * Must initialize md member of tio, otherwise it won't
459 * be available in dm_mq_queue_rq.
460 */
461 tio->md = md;
462
463 if (md->init_tio_pdu) {
464 /* target-specific per-io data is immediately after the tio */
465 tio->info.ptr = tio + 1;
466 }
467
468 return 0;
469}
470
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200471static blk_status_t dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400472 const struct blk_mq_queue_data *bd)
473{
474 struct request *rq = bd->rq;
475 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
476 struct mapped_device *md = tio->md;
477 struct dm_target *ti = md->immutable_target;
478
479 if (unlikely(!ti)) {
480 int srcu_idx;
481 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
482
483 ti = dm_table_find_target(map, 0);
484 dm_put_live_table(md, srcu_idx);
485 }
486
487 if (ti->type->busy && ti->type->busy(ti))
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200488 return BLK_STS_RESOURCE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400489
490 dm_start_request(md, rq);
491
492 /* Init tio using md established in .init_request */
493 init_tio(tio, rq, md);
494
495 /*
496 * Establish tio->ti before calling map_request().
497 */
498 tio->ti = ti;
499
500 /* Direct call is fine since .queue_rq allows allocations */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400501 if (map_request(tio) == DM_MAPIO_REQUEUE) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400502 /* Undo dm_start_request() before requeuing */
503 rq_end_stats(md, rq);
Mike Snitzer2adc5c52018-11-08 14:59:41 -0500504 rq_completed(md);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200505 return BLK_STS_RESOURCE;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400506 }
507
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200508 return BLK_STS_OK;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400509}
510
Eric Biggersf363b082017-03-30 13:39:16 -0700511static const struct blk_mq_ops dm_mq_ops = {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400512 .queue_rq = dm_mq_queue_rq,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400513 .complete = dm_softirq_done,
514 .init_request = dm_mq_init_request,
515};
516
Mike Snitzere83068a2016-05-24 21:16:51 -0400517int dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400518{
519 struct request_queue *q;
Mike Snitzere83068a2016-05-24 21:16:51 -0400520 struct dm_target *immutable_tgt;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400521 int err;
522
Mike Snitzer4cc96132016-05-12 16:28:10 -0400523 md->tag_set = kzalloc_node(sizeof(struct blk_mq_tag_set), GFP_KERNEL, md->numa_node_id);
524 if (!md->tag_set)
525 return -ENOMEM;
526
527 md->tag_set->ops = &dm_mq_ops;
528 md->tag_set->queue_depth = dm_get_blk_mq_queue_depth();
529 md->tag_set->numa_node = md->numa_node_id;
530 md->tag_set->flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
531 md->tag_set->nr_hw_queues = dm_get_blk_mq_nr_hw_queues();
532 md->tag_set->driver_data = md;
533
534 md->tag_set->cmd_size = sizeof(struct dm_rq_target_io);
Mike Snitzere83068a2016-05-24 21:16:51 -0400535 immutable_tgt = dm_table_get_immutable_target(t);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400536 if (immutable_tgt && immutable_tgt->per_io_data_size) {
537 /* any target-specific per-io data is immediately after the tio */
538 md->tag_set->cmd_size += immutable_tgt->per_io_data_size;
539 md->init_tio_pdu = true;
540 }
541
542 err = blk_mq_alloc_tag_set(md->tag_set);
543 if (err)
544 goto out_kfree_tag_set;
545
546 q = blk_mq_init_allocated_queue(md->tag_set, md->queue);
547 if (IS_ERR(q)) {
548 err = PTR_ERR(q);
549 goto out_tag_set;
550 }
Mike Snitzer4cc96132016-05-12 16:28:10 -0400551
Mike Snitzer4cc96132016-05-12 16:28:10 -0400552 return 0;
553
Mike Snitzer4cc96132016-05-12 16:28:10 -0400554out_tag_set:
555 blk_mq_free_tag_set(md->tag_set);
556out_kfree_tag_set:
557 kfree(md->tag_set);
558
559 return err;
560}
561
562void dm_mq_cleanup_mapped_device(struct mapped_device *md)
563{
564 if (md->tag_set) {
565 blk_mq_free_tag_set(md->tag_set);
566 kfree(md->tag_set);
567 }
568}
569
570module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
571MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
572
Jens Axboe6a23e052018-10-10 20:49:26 -0600573/* Unused, but preserved for userspace compatibility */
574static bool use_blk_mq = true;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400575module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
576MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
577
578module_param(dm_mq_nr_hw_queues, uint, S_IRUGO | S_IWUSR);
579MODULE_PARM_DESC(dm_mq_nr_hw_queues, "Number of hardware queues for request-based dm-mq devices");
580
581module_param(dm_mq_queue_depth, uint, S_IRUGO | S_IWUSR);
582MODULE_PARM_DESC(dm_mq_queue_depth, "Queue depth for request-based dm-mq devices");