blob: a9e9e781bb770c44808f43b65838ae015bc6396b [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
26#ifdef CONFIG_DM_MQ_DEFAULT
27static bool use_blk_mq = true;
28#else
29static bool use_blk_mq = false;
30#endif
31
32bool dm_use_blk_mq_default(void)
33{
34 return use_blk_mq;
35}
36
37bool dm_use_blk_mq(struct mapped_device *md)
38{
39 return md->use_blk_mq;
40}
41EXPORT_SYMBOL_GPL(dm_use_blk_mq);
42
43unsigned dm_get_reserved_rq_based_ios(void)
44{
45 return __dm_get_module_param(&reserved_rq_based_ios,
46 RESERVED_REQUEST_BASED_IOS, DM_RESERVED_MAX_IOS);
47}
48EXPORT_SYMBOL_GPL(dm_get_reserved_rq_based_ios);
49
50static unsigned dm_get_blk_mq_nr_hw_queues(void)
51{
52 return __dm_get_module_param(&dm_mq_nr_hw_queues, 1, 32);
53}
54
55static unsigned dm_get_blk_mq_queue_depth(void)
56{
57 return __dm_get_module_param(&dm_mq_queue_depth,
58 DM_MQ_QUEUE_DEPTH, BLK_MQ_MAX_DEPTH);
59}
60
61int dm_request_based(struct mapped_device *md)
62{
63 return blk_queue_stackable(md->queue);
64}
65
66static void dm_old_start_queue(struct request_queue *q)
67{
68 unsigned long flags;
69
70 spin_lock_irqsave(q->queue_lock, flags);
71 if (blk_queue_stopped(q))
72 blk_start_queue(q);
73 spin_unlock_irqrestore(q->queue_lock, flags);
74}
75
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040076static void dm_mq_start_queue(struct request_queue *q)
77{
78 unsigned long flags;
79
80 spin_lock_irqsave(q->queue_lock, flags);
81 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
82 spin_unlock_irqrestore(q->queue_lock, flags);
83
84 blk_mq_start_stopped_hw_queues(q, true);
85 blk_mq_kick_requeue_list(q);
86}
87
Mike Snitzer4cc96132016-05-12 16:28:10 -040088void dm_start_queue(struct request_queue *q)
89{
90 if (!q->mq_ops)
91 dm_old_start_queue(q);
Mike Snitzer9dbeaea2016-09-01 11:59:33 -040092 else
93 dm_mq_start_queue(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -040094}
95
96static void dm_old_stop_queue(struct request_queue *q)
97{
98 unsigned long flags;
99
100 spin_lock_irqsave(q->queue_lock, flags);
Bart Van Asschec533f242016-08-31 15:17:24 -0700101 if (!blk_queue_stopped(q))
102 blk_stop_queue(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400103 spin_unlock_irqrestore(q->queue_lock, flags);
104}
105
Bart Van Assche2397a152016-08-31 15:18:11 -0700106static void dm_mq_stop_queue(struct request_queue *q)
107{
108 unsigned long flags;
109
110 spin_lock_irqsave(q->queue_lock, flags);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400111 if (blk_queue_stopped(q)) {
112 spin_unlock_irqrestore(q->queue_lock, flags);
113 return;
114 }
115
Bart Van Assche2397a152016-08-31 15:18:11 -0700116 queue_flag_set(QUEUE_FLAG_STOPPED, q);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400117 spin_unlock_irqrestore(q->queue_lock, flags);
Bart Van Assche2397a152016-08-31 15:18:11 -0700118
119 /* Avoid that requeuing could restart the queue. */
120 blk_mq_cancel_requeue_work(q);
121 blk_mq_stop_hw_queues(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400122}
123
124void dm_stop_queue(struct request_queue *q)
125{
126 if (!q->mq_ops)
127 dm_old_stop_queue(q);
Bart Van Assche2397a152016-08-31 15:18:11 -0700128 else
129 dm_mq_stop_queue(q);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400130}
131
132static struct dm_rq_target_io *alloc_old_rq_tio(struct mapped_device *md,
133 gfp_t gfp_mask)
134{
135 return mempool_alloc(md->io_pool, gfp_mask);
136}
137
138static void free_old_rq_tio(struct dm_rq_target_io *tio)
139{
140 mempool_free(tio, tio->md->io_pool);
141}
142
143static struct request *alloc_old_clone_request(struct mapped_device *md,
144 gfp_t gfp_mask)
145{
146 return mempool_alloc(md->rq_pool, gfp_mask);
147}
148
149static void free_old_clone_request(struct mapped_device *md, struct request *rq)
150{
151 mempool_free(rq, md->rq_pool);
152}
153
154/*
155 * Partial completion handling for request-based dm
156 */
157static void end_clone_bio(struct bio *clone)
158{
159 struct dm_rq_clone_bio_info *info =
160 container_of(clone, struct dm_rq_clone_bio_info, clone);
161 struct dm_rq_target_io *tio = info->tio;
162 struct bio *bio = info->orig;
163 unsigned int nr_bytes = info->orig->bi_iter.bi_size;
164 int error = clone->bi_error;
165
166 bio_put(clone);
167
168 if (tio->error)
169 /*
170 * An error has already been detected on the request.
171 * Once error occurred, just let clone->end_io() handle
172 * the remainder.
173 */
174 return;
175 else if (error) {
176 /*
177 * Don't notice the error to the upper layer yet.
178 * The error handling decision is made by the target driver,
179 * when the request is completed.
180 */
181 tio->error = error;
182 return;
183 }
184
185 /*
186 * I/O for the bio successfully completed.
187 * Notice the data completion to the upper layer.
188 */
189
190 /*
191 * bios are processed from the head of the list.
192 * So the completing bio should always be rq->bio.
193 * If it's not, something wrong is happening.
194 */
195 if (tio->orig->bio != bio)
196 DMERR("bio completion is going in the middle of the request");
197
198 /*
199 * Update the original request.
200 * Do not use blk_end_request() here, because it may complete
201 * the original request before the clone, and break the ordering.
202 */
203 blk_update_request(tio->orig, 0, nr_bytes);
204}
205
206static struct dm_rq_target_io *tio_from_request(struct request *rq)
207{
208 return (rq->q->mq_ops ? blk_mq_rq_to_pdu(rq) : rq->special);
209}
210
211static void rq_end_stats(struct mapped_device *md, struct request *orig)
212{
213 if (unlikely(dm_stats_used(&md->stats))) {
214 struct dm_rq_target_io *tio = tio_from_request(orig);
215 tio->duration_jiffies = jiffies - tio->duration_jiffies;
216 dm_stats_account_io(&md->stats, rq_data_dir(orig),
217 blk_rq_pos(orig), tio->n_sectors, true,
218 tio->duration_jiffies, &tio->stats_aux);
219 }
220}
221
222/*
223 * Don't touch any member of the md after calling this function because
224 * the md may be freed in dm_put() at the end of this function.
225 * Or do dm_get() before calling this function and dm_put() later.
226 */
227static void rq_completed(struct mapped_device *md, int rw, bool run_queue)
228{
229 atomic_dec(&md->pending[rw]);
230
231 /* nudge anyone waiting on suspend queue */
232 if (!md_in_flight(md))
233 wake_up(&md->wait);
234
235 /*
236 * Run this off this callpath, as drivers could invoke end_io while
237 * inside their request_fn (and holding the queue lock). Calling
238 * back into ->request_fn() could deadlock attempting to grab the
239 * queue lock again.
240 */
241 if (!md->queue->mq_ops && run_queue)
242 blk_run_queue_async(md->queue);
243
244 /*
245 * dm_put() must be at the end of this function. See the comment above
246 */
247 dm_put(md);
248}
249
250static void free_rq_clone(struct request *clone)
251{
252 struct dm_rq_target_io *tio = clone->end_io_data;
253 struct mapped_device *md = tio->md;
254
255 blk_rq_unprep_clone(clone);
256
Mike Snitzere83068a2016-05-24 21:16:51 -0400257 /*
258 * It is possible for a clone_old_rq() allocated clone to
259 * get passed in -- it may not yet have a request_queue.
260 * This is known to occur if the error target replaces
261 * a multipath target that has a request_fn queue stacked
262 * on blk-mq queue(s).
263 */
264 if (clone->q && clone->q->mq_ops)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400265 /* stacked on blk-mq queue(s) */
266 tio->ti->type->release_clone_rq(clone);
267 else if (!md->queue->mq_ops)
268 /* request_fn queue stacked on request_fn queue(s) */
269 free_old_clone_request(md, clone);
270
271 if (!md->queue->mq_ops)
272 free_old_rq_tio(tio);
273}
274
275/*
276 * Complete the clone and the original request.
277 * Must be called without clone's queue lock held,
278 * see end_clone_request() for more details.
279 */
280static void dm_end_request(struct request *clone, int error)
281{
282 int rw = rq_data_dir(clone);
283 struct dm_rq_target_io *tio = clone->end_io_data;
284 struct mapped_device *md = tio->md;
285 struct request *rq = tio->orig;
286
287 if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
288 rq->errors = clone->errors;
289 rq->resid_len = clone->resid_len;
290
291 if (rq->sense)
292 /*
293 * We are using the sense buffer of the original
294 * request.
295 * So setting the length of the sense data is enough.
296 */
297 rq->sense_len = clone->sense_len;
298 }
299
300 free_rq_clone(clone);
301 rq_end_stats(md, rq);
302 if (!rq->q->mq_ops)
303 blk_end_request_all(rq, error);
304 else
305 blk_mq_end_request(rq, error);
306 rq_completed(md, rw, true);
307}
308
309static void dm_unprep_request(struct request *rq)
310{
311 struct dm_rq_target_io *tio = tio_from_request(rq);
312 struct request *clone = tio->clone;
313
314 if (!rq->q->mq_ops) {
315 rq->special = NULL;
Christoph Hellwige8064022016-10-20 15:12:13 +0200316 rq->rq_flags &= ~RQF_DONTPREP;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400317 }
318
319 if (clone)
320 free_rq_clone(clone);
321 else if (!tio->md->queue->mq_ops)
322 free_old_rq_tio(tio);
323}
324
325/*
326 * Requeue the original request of a clone.
327 */
328static void dm_old_requeue_request(struct request *rq)
329{
330 struct request_queue *q = rq->q;
331 unsigned long flags;
332
333 spin_lock_irqsave(q->queue_lock, flags);
334 blk_requeue_request(q, rq);
335 blk_run_queue_async(q);
336 spin_unlock_irqrestore(q->queue_lock, flags);
337}
338
Mike Snitzere0c10752016-09-14 10:36:39 -0400339static void __dm_mq_kick_requeue_list(struct request_queue *q, unsigned long msecs)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400340{
Bart Van Assche52d7f1b2016-10-28 17:20:32 -0700341 blk_mq_delay_kick_requeue_list(q, msecs);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400342}
343
Mike Snitzere0c10752016-09-14 10:36:39 -0400344void dm_mq_kick_requeue_list(struct mapped_device *md)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400345{
Mike Snitzere0c10752016-09-14 10:36:39 -0400346 __dm_mq_kick_requeue_list(dm_get_md_queue(md), 0);
347}
348EXPORT_SYMBOL(dm_mq_kick_requeue_list);
349
350static void dm_mq_delay_requeue_request(struct request *rq, unsigned long msecs)
351{
352 blk_mq_requeue_request(rq);
353 __dm_mq_kick_requeue_list(rq->q, msecs);
354}
355
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400356static void dm_requeue_original_request(struct dm_rq_target_io *tio, bool delay_requeue)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400357{
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400358 struct mapped_device *md = tio->md;
359 struct request *rq = tio->orig;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400360 int rw = rq_data_dir(rq);
361
362 rq_end_stats(md, rq);
363 dm_unprep_request(rq);
364
365 if (!rq->q->mq_ops)
366 dm_old_requeue_request(rq);
367 else
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400368 dm_mq_delay_requeue_request(rq, delay_requeue ? 5000 : 0);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400369
370 rq_completed(md, rw, false);
371}
372
373static void dm_done(struct request *clone, int error, bool mapped)
374{
375 int r = error;
376 struct dm_rq_target_io *tio = clone->end_io_data;
377 dm_request_endio_fn rq_end_io = NULL;
378
379 if (tio->ti) {
380 rq_end_io = tio->ti->type->rq_end_io;
381
382 if (mapped && rq_end_io)
383 r = rq_end_io(tio->ti, clone, error, &tio->info);
384 }
385
386 if (unlikely(r == -EREMOTEIO && (req_op(clone) == REQ_OP_WRITE_SAME) &&
387 !clone->q->limits.max_write_same_sectors))
388 disable_write_same(tio->md);
389
390 if (r <= 0)
391 /* The target wants to complete the I/O */
392 dm_end_request(clone, r);
393 else if (r == DM_ENDIO_INCOMPLETE)
394 /* The target will handle the I/O */
395 return;
396 else if (r == DM_ENDIO_REQUEUE)
397 /* The target wants to requeue the I/O */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400398 dm_requeue_original_request(tio, false);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400399 else {
400 DMWARN("unimplemented target endio return value: %d", r);
401 BUG();
402 }
403}
404
405/*
406 * Request completion handler for request-based dm
407 */
408static void dm_softirq_done(struct request *rq)
409{
410 bool mapped = true;
411 struct dm_rq_target_io *tio = tio_from_request(rq);
412 struct request *clone = tio->clone;
413 int rw;
414
415 if (!clone) {
416 rq_end_stats(tio->md, rq);
417 rw = rq_data_dir(rq);
418 if (!rq->q->mq_ops) {
419 blk_end_request_all(rq, tio->error);
420 rq_completed(tio->md, rw, false);
421 free_old_rq_tio(tio);
422 } else {
423 blk_mq_end_request(rq, tio->error);
424 rq_completed(tio->md, rw, false);
425 }
426 return;
427 }
428
Christoph Hellwige8064022016-10-20 15:12:13 +0200429 if (rq->rq_flags & RQF_FAILED)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400430 mapped = false;
431
432 dm_done(clone, tio->error, mapped);
433}
434
435/*
436 * Complete the clone and the original request with the error status
437 * through softirq context.
438 */
439static void dm_complete_request(struct request *rq, int error)
440{
441 struct dm_rq_target_io *tio = tio_from_request(rq);
442
443 tio->error = error;
444 if (!rq->q->mq_ops)
445 blk_complete_request(rq);
446 else
447 blk_mq_complete_request(rq, error);
448}
449
450/*
451 * Complete the not-mapped clone and the original request with the error status
452 * through softirq context.
453 * Target's rq_end_io() function isn't called.
454 * This may be used when the target's map_rq() or clone_and_map_rq() functions fail.
455 */
456static void dm_kill_unmapped_request(struct request *rq, int error)
457{
Christoph Hellwige8064022016-10-20 15:12:13 +0200458 rq->rq_flags |= RQF_FAILED;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400459 dm_complete_request(rq, error);
460}
461
462/*
463 * Called with the clone's queue lock held (in the case of .request_fn)
464 */
465static void end_clone_request(struct request *clone, int error)
466{
467 struct dm_rq_target_io *tio = clone->end_io_data;
468
469 if (!clone->q->mq_ops) {
470 /*
471 * For just cleaning up the information of the queue in which
472 * the clone was dispatched.
473 * The clone is *NOT* freed actually here because it is alloced
Christoph Hellwige8064022016-10-20 15:12:13 +0200474 * from dm own mempool (RQF_ALLOCED isn't set).
Mike Snitzer4cc96132016-05-12 16:28:10 -0400475 */
476 __blk_put_request(clone->q, clone);
477 }
478
479 /*
480 * Actual request completion is done in a softirq context which doesn't
481 * hold the clone's queue lock. Otherwise, deadlock could occur because:
482 * - another request may be submitted by the upper level driver
483 * of the stacking during the completion
484 * - the submission which requires queue lock may be done
485 * against this clone's queue
486 */
487 dm_complete_request(tio->orig, error);
488}
489
490static void dm_dispatch_clone_request(struct request *clone, struct request *rq)
491{
492 int r;
493
494 if (blk_queue_io_stat(clone->q))
Christoph Hellwige8064022016-10-20 15:12:13 +0200495 clone->rq_flags |= RQF_IO_STAT;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400496
497 clone->start_time = jiffies;
498 r = blk_insert_cloned_request(clone->q, clone);
499 if (r)
500 /* must complete clone in terms of original request */
501 dm_complete_request(rq, r);
502}
503
504static int dm_rq_bio_constructor(struct bio *bio, struct bio *bio_orig,
505 void *data)
506{
507 struct dm_rq_target_io *tio = data;
508 struct dm_rq_clone_bio_info *info =
509 container_of(bio, struct dm_rq_clone_bio_info, clone);
510
511 info->orig = bio_orig;
512 info->tio = tio;
513 bio->bi_end_io = end_clone_bio;
514
515 return 0;
516}
517
518static int setup_clone(struct request *clone, struct request *rq,
519 struct dm_rq_target_io *tio, gfp_t gfp_mask)
520{
521 int r;
522
523 r = blk_rq_prep_clone(clone, rq, tio->md->bs, gfp_mask,
524 dm_rq_bio_constructor, tio);
525 if (r)
526 return r;
527
528 clone->cmd = rq->cmd;
529 clone->cmd_len = rq->cmd_len;
530 clone->sense = rq->sense;
531 clone->end_io = end_clone_request;
532 clone->end_io_data = tio;
533
534 tio->clone = clone;
535
536 return 0;
537}
538
539static struct request *clone_old_rq(struct request *rq, struct mapped_device *md,
540 struct dm_rq_target_io *tio, gfp_t gfp_mask)
541{
542 /*
543 * Create clone for use with .request_fn request_queue
544 */
545 struct request *clone;
546
547 clone = alloc_old_clone_request(md, gfp_mask);
548 if (!clone)
549 return NULL;
550
551 blk_rq_init(NULL, clone);
552 if (setup_clone(clone, rq, tio, gfp_mask)) {
553 /* -ENOMEM */
554 free_old_clone_request(md, clone);
555 return NULL;
556 }
557
558 return clone;
559}
560
561static void map_tio_request(struct kthread_work *work);
562
563static void init_tio(struct dm_rq_target_io *tio, struct request *rq,
564 struct mapped_device *md)
565{
566 tio->md = md;
567 tio->ti = NULL;
568 tio->clone = NULL;
569 tio->orig = rq;
570 tio->error = 0;
571 /*
572 * Avoid initializing info for blk-mq; it passes
573 * target-specific data through info.ptr
574 * (see: dm_mq_init_request)
575 */
576 if (!md->init_tio_pdu)
577 memset(&tio->info, 0, sizeof(tio->info));
578 if (md->kworker_task)
Petr Mladek39891442016-10-11 13:55:20 -0700579 kthread_init_work(&tio->work, map_tio_request);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400580}
581
582static struct dm_rq_target_io *dm_old_prep_tio(struct request *rq,
583 struct mapped_device *md,
584 gfp_t gfp_mask)
585{
586 struct dm_rq_target_io *tio;
587 int srcu_idx;
588 struct dm_table *table;
589
590 tio = alloc_old_rq_tio(md, gfp_mask);
591 if (!tio)
592 return NULL;
593
594 init_tio(tio, rq, md);
595
596 table = dm_get_live_table(md, &srcu_idx);
597 /*
598 * Must clone a request if this .request_fn DM device
599 * is stacked on .request_fn device(s).
600 */
Mike Snitzere83068a2016-05-24 21:16:51 -0400601 if (!dm_table_all_blk_mq_devices(table)) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400602 if (!clone_old_rq(rq, md, tio, gfp_mask)) {
603 dm_put_live_table(md, srcu_idx);
604 free_old_rq_tio(tio);
605 return NULL;
606 }
607 }
608 dm_put_live_table(md, srcu_idx);
609
610 return tio;
611}
612
613/*
614 * Called with the queue lock held.
615 */
616static int dm_old_prep_fn(struct request_queue *q, struct request *rq)
617{
618 struct mapped_device *md = q->queuedata;
619 struct dm_rq_target_io *tio;
620
621 if (unlikely(rq->special)) {
622 DMWARN("Already has something in rq->special.");
623 return BLKPREP_KILL;
624 }
625
626 tio = dm_old_prep_tio(rq, md, GFP_ATOMIC);
627 if (!tio)
628 return BLKPREP_DEFER;
629
630 rq->special = tio;
Christoph Hellwige8064022016-10-20 15:12:13 +0200631 rq->rq_flags |= RQF_DONTPREP;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400632
633 return BLKPREP_OK;
634}
635
636/*
637 * Returns:
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400638 * DM_MAPIO_* : the request has been processed as indicated
639 * DM_MAPIO_REQUEUE : the original request needs to be immediately requeued
Mike Snitzer4cc96132016-05-12 16:28:10 -0400640 * < 0 : the request was completed due to failure
641 */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400642static int map_request(struct dm_rq_target_io *tio)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400643{
644 int r;
645 struct dm_target *ti = tio->ti;
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400646 struct mapped_device *md = tio->md;
647 struct request *rq = tio->orig;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400648 struct request *clone = NULL;
649
650 if (tio->clone) {
651 clone = tio->clone;
652 r = ti->type->map_rq(ti, clone, &tio->info);
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400653 if (r == DM_MAPIO_DELAY_REQUEUE)
654 return DM_MAPIO_REQUEUE; /* .request_fn requeue is always immediate */
Mike Snitzer4cc96132016-05-12 16:28:10 -0400655 } else {
656 r = ti->type->clone_and_map_rq(ti, rq, &tio->info, &clone);
657 if (r < 0) {
658 /* The target wants to complete the I/O */
659 dm_kill_unmapped_request(rq, r);
660 return r;
661 }
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400662 if (r == DM_MAPIO_REMAPPED &&
663 setup_clone(clone, rq, tio, GFP_ATOMIC)) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400664 /* -ENOMEM */
665 ti->type->release_clone_rq(clone);
666 return DM_MAPIO_REQUEUE;
667 }
668 }
669
670 switch (r) {
671 case DM_MAPIO_SUBMITTED:
672 /* The target has taken the I/O to submit by itself later */
673 break;
674 case DM_MAPIO_REMAPPED:
675 /* The target has remapped the I/O so dispatch it */
676 trace_block_rq_remap(clone->q, clone, disk_devt(dm_disk(md)),
677 blk_rq_pos(rq));
678 dm_dispatch_clone_request(clone, rq);
679 break;
680 case DM_MAPIO_REQUEUE:
681 /* The target wants to requeue the I/O */
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400682 break;
683 case DM_MAPIO_DELAY_REQUEUE:
684 /* The target wants to requeue the I/O after a delay */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400685 dm_requeue_original_request(tio, true);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400686 break;
687 default:
688 if (r > 0) {
689 DMWARN("unimplemented target map return value: %d", r);
690 BUG();
691 }
692
693 /* The target wants to complete the I/O */
694 dm_kill_unmapped_request(rq, r);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400695 }
696
Mike Snitzera8ac51e2016-09-09 19:24:57 -0400697 return r;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400698}
699
700static void dm_start_request(struct mapped_device *md, struct request *orig)
701{
702 if (!orig->q->mq_ops)
703 blk_start_request(orig);
704 else
705 blk_mq_start_request(orig);
706 atomic_inc(&md->pending[rq_data_dir(orig)]);
707
708 if (md->seq_rq_merge_deadline_usecs) {
709 md->last_rq_pos = rq_end_sector(orig);
710 md->last_rq_rw = rq_data_dir(orig);
711 md->last_rq_start_time = ktime_get();
712 }
713
714 if (unlikely(dm_stats_used(&md->stats))) {
715 struct dm_rq_target_io *tio = tio_from_request(orig);
716 tio->duration_jiffies = jiffies;
717 tio->n_sectors = blk_rq_sectors(orig);
718 dm_stats_account_io(&md->stats, rq_data_dir(orig),
719 blk_rq_pos(orig), tio->n_sectors, false, 0,
720 &tio->stats_aux);
721 }
722
723 /*
724 * Hold the md reference here for the in-flight I/O.
725 * We can't rely on the reference count by device opener,
726 * because the device may be closed during the request completion
727 * when all bios are completed.
728 * See the comment in rq_completed() too.
729 */
730 dm_get(md);
731}
732
733static void map_tio_request(struct kthread_work *work)
734{
735 struct dm_rq_target_io *tio = container_of(work, struct dm_rq_target_io, work);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400736
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400737 if (map_request(tio) == DM_MAPIO_REQUEUE)
738 dm_requeue_original_request(tio, false);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400739}
740
741ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf)
742{
743 return sprintf(buf, "%u\n", md->seq_rq_merge_deadline_usecs);
744}
745
746#define MAX_SEQ_RQ_MERGE_DEADLINE_USECS 100000
747
748ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
749 const char *buf, size_t count)
750{
751 unsigned deadline;
752
Mike Snitzere83068a2016-05-24 21:16:51 -0400753 if (dm_get_md_type(md) != DM_TYPE_REQUEST_BASED)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400754 return count;
755
756 if (kstrtouint(buf, 10, &deadline))
757 return -EINVAL;
758
759 if (deadline > MAX_SEQ_RQ_MERGE_DEADLINE_USECS)
760 deadline = MAX_SEQ_RQ_MERGE_DEADLINE_USECS;
761
762 md->seq_rq_merge_deadline_usecs = deadline;
763
764 return count;
765}
766
767static bool dm_old_request_peeked_before_merge_deadline(struct mapped_device *md)
768{
769 ktime_t kt_deadline;
770
771 if (!md->seq_rq_merge_deadline_usecs)
772 return false;
773
774 kt_deadline = ns_to_ktime((u64)md->seq_rq_merge_deadline_usecs * NSEC_PER_USEC);
775 kt_deadline = ktime_add_safe(md->last_rq_start_time, kt_deadline);
776
777 return !ktime_after(ktime_get(), kt_deadline);
778}
779
780/*
781 * q->request_fn for old request-based dm.
782 * Called with the queue lock held.
783 */
784static void dm_old_request_fn(struct request_queue *q)
785{
786 struct mapped_device *md = q->queuedata;
787 struct dm_target *ti = md->immutable_target;
788 struct request *rq;
789 struct dm_rq_target_io *tio;
790 sector_t pos = 0;
791
792 if (unlikely(!ti)) {
793 int srcu_idx;
794 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
795
796 ti = dm_table_find_target(map, pos);
797 dm_put_live_table(md, srcu_idx);
798 }
799
800 /*
801 * For suspend, check blk_queue_stopped() and increment
802 * ->pending within a single queue_lock not to increment the
803 * number of in-flight I/Os after the queue is stopped in
804 * dm_suspend().
805 */
806 while (!blk_queue_stopped(q)) {
807 rq = blk_peek_request(q);
808 if (!rq)
809 return;
810
811 /* always use block 0 to find the target for flushes for now */
812 pos = 0;
813 if (req_op(rq) != REQ_OP_FLUSH)
814 pos = blk_rq_pos(rq);
815
816 if ((dm_old_request_peeked_before_merge_deadline(md) &&
817 md_in_flight(md) && rq->bio && rq->bio->bi_vcnt == 1 &&
818 md->last_rq_pos == pos && md->last_rq_rw == rq_data_dir(rq)) ||
819 (ti->type->busy && ti->type->busy(ti))) {
Tahsin Erdoganbd9f55e2016-07-15 06:27:08 -0700820 blk_delay_queue(q, 10);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400821 return;
822 }
823
824 dm_start_request(md, rq);
825
826 tio = tio_from_request(rq);
827 /* Establish tio->ti before queuing work (map_tio_request) */
828 tio->ti = ti;
Petr Mladek39891442016-10-11 13:55:20 -0700829 kthread_queue_work(&md->kworker, &tio->work);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400830 BUG_ON(!irqs_disabled());
831 }
832}
833
834/*
835 * Fully initialize a .request_fn request-based queue.
836 */
837int dm_old_init_request_queue(struct mapped_device *md)
838{
839 /* Fully initialize the queue */
840 if (!blk_init_allocated_queue(md->queue, dm_old_request_fn, NULL))
841 return -EINVAL;
842
843 /* disable dm_old_request_fn's merge heuristic by default */
844 md->seq_rq_merge_deadline_usecs = 0;
845
846 dm_init_normal_md_queue(md);
847 blk_queue_softirq_done(md->queue, dm_softirq_done);
848 blk_queue_prep_rq(md->queue, dm_old_prep_fn);
849
850 /* Initialize the request-based DM worker thread */
Petr Mladek39891442016-10-11 13:55:20 -0700851 kthread_init_worker(&md->kworker);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400852 md->kworker_task = kthread_run(kthread_worker_fn, &md->kworker,
853 "kdmwork-%s", dm_device_name(md));
Mike Snitzer7193a9d2016-07-06 09:06:37 -0400854 if (IS_ERR(md->kworker_task))
855 return PTR_ERR(md->kworker_task);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400856
857 elv_register_queue(md->queue);
858
859 return 0;
860}
861
862static int dm_mq_init_request(void *data, struct request *rq,
863 unsigned int hctx_idx, unsigned int request_idx,
864 unsigned int numa_node)
865{
866 struct mapped_device *md = data;
867 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
868
869 /*
870 * Must initialize md member of tio, otherwise it won't
871 * be available in dm_mq_queue_rq.
872 */
873 tio->md = md;
874
875 if (md->init_tio_pdu) {
876 /* target-specific per-io data is immediately after the tio */
877 tio->info.ptr = tio + 1;
878 }
879
880 return 0;
881}
882
883static int dm_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
884 const struct blk_mq_queue_data *bd)
885{
886 struct request *rq = bd->rq;
887 struct dm_rq_target_io *tio = blk_mq_rq_to_pdu(rq);
888 struct mapped_device *md = tio->md;
889 struct dm_target *ti = md->immutable_target;
890
891 if (unlikely(!ti)) {
892 int srcu_idx;
893 struct dm_table *map = dm_get_live_table(md, &srcu_idx);
894
895 ti = dm_table_find_target(map, 0);
896 dm_put_live_table(md, srcu_idx);
897 }
898
Mike Snitzer7d9595d2016-08-02 12:51:11 -0400899 /*
900 * On suspend dm_stop_queue() handles stopping the blk-mq
901 * request_queue BUT: even though the hw_queues are marked
902 * BLK_MQ_S_STOPPED at that point there is still a race that
903 * is allowing block/blk-mq.c to call ->queue_rq against a
904 * hctx that it really shouldn't. The following check guards
905 * against this rarity (albeit _not_ race-free).
906 */
907 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
908 return BLK_MQ_RQ_QUEUE_BUSY;
909
Mike Snitzer4cc96132016-05-12 16:28:10 -0400910 if (ti->type->busy && ti->type->busy(ti))
911 return BLK_MQ_RQ_QUEUE_BUSY;
912
913 dm_start_request(md, rq);
914
915 /* Init tio using md established in .init_request */
916 init_tio(tio, rq, md);
917
918 /*
919 * Establish tio->ti before calling map_request().
920 */
921 tio->ti = ti;
922
923 /* Direct call is fine since .queue_rq allows allocations */
Mike Snitzerfbc39b42016-09-13 12:16:14 -0400924 if (map_request(tio) == DM_MAPIO_REQUEUE) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400925 /* Undo dm_start_request() before requeuing */
926 rq_end_stats(md, rq);
927 rq_completed(md, rq_data_dir(rq), false);
928 return BLK_MQ_RQ_QUEUE_BUSY;
929 }
930
931 return BLK_MQ_RQ_QUEUE_OK;
932}
933
934static struct blk_mq_ops dm_mq_ops = {
935 .queue_rq = dm_mq_queue_rq,
Mike Snitzer4cc96132016-05-12 16:28:10 -0400936 .complete = dm_softirq_done,
937 .init_request = dm_mq_init_request,
938};
939
Mike Snitzere83068a2016-05-24 21:16:51 -0400940int dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t)
Mike Snitzer4cc96132016-05-12 16:28:10 -0400941{
942 struct request_queue *q;
Mike Snitzere83068a2016-05-24 21:16:51 -0400943 struct dm_target *immutable_tgt;
Mike Snitzer4cc96132016-05-12 16:28:10 -0400944 int err;
945
Mike Snitzere83068a2016-05-24 21:16:51 -0400946 if (!dm_table_all_blk_mq_devices(t)) {
Mike Snitzer4cc96132016-05-12 16:28:10 -0400947 DMERR("request-based dm-mq may only be stacked on blk-mq device(s)");
948 return -EINVAL;
949 }
950
951 md->tag_set = kzalloc_node(sizeof(struct blk_mq_tag_set), GFP_KERNEL, md->numa_node_id);
952 if (!md->tag_set)
953 return -ENOMEM;
954
955 md->tag_set->ops = &dm_mq_ops;
956 md->tag_set->queue_depth = dm_get_blk_mq_queue_depth();
957 md->tag_set->numa_node = md->numa_node_id;
958 md->tag_set->flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
959 md->tag_set->nr_hw_queues = dm_get_blk_mq_nr_hw_queues();
960 md->tag_set->driver_data = md;
961
962 md->tag_set->cmd_size = sizeof(struct dm_rq_target_io);
Mike Snitzere83068a2016-05-24 21:16:51 -0400963 immutable_tgt = dm_table_get_immutable_target(t);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400964 if (immutable_tgt && immutable_tgt->per_io_data_size) {
965 /* any target-specific per-io data is immediately after the tio */
966 md->tag_set->cmd_size += immutable_tgt->per_io_data_size;
967 md->init_tio_pdu = true;
968 }
969
970 err = blk_mq_alloc_tag_set(md->tag_set);
971 if (err)
972 goto out_kfree_tag_set;
973
974 q = blk_mq_init_allocated_queue(md->tag_set, md->queue);
975 if (IS_ERR(q)) {
976 err = PTR_ERR(q);
977 goto out_tag_set;
978 }
979 dm_init_md_queue(md);
980
981 /* backfill 'mq' sysfs registration normally done in blk_register_queue */
Matias Bjørlingb21d5b32016-09-16 14:25:06 +0200982 blk_mq_register_dev(disk_to_dev(md->disk), q);
Mike Snitzer4cc96132016-05-12 16:28:10 -0400983
984 return 0;
985
986out_tag_set:
987 blk_mq_free_tag_set(md->tag_set);
988out_kfree_tag_set:
989 kfree(md->tag_set);
990
991 return err;
992}
993
994void dm_mq_cleanup_mapped_device(struct mapped_device *md)
995{
996 if (md->tag_set) {
997 blk_mq_free_tag_set(md->tag_set);
998 kfree(md->tag_set);
999 }
1000}
1001
1002module_param(reserved_rq_based_ios, uint, S_IRUGO | S_IWUSR);
1003MODULE_PARM_DESC(reserved_rq_based_ios, "Reserved IOs in request-based mempools");
1004
1005module_param(use_blk_mq, bool, S_IRUGO | S_IWUSR);
1006MODULE_PARM_DESC(use_blk_mq, "Use block multiqueue for request-based DM devices");
1007
1008module_param(dm_mq_nr_hw_queues, uint, S_IRUGO | S_IWUSR);
1009MODULE_PARM_DESC(dm_mq_nr_hw_queues, "Number of hardware queues for request-based dm-mq devices");
1010
1011module_param(dm_mq_queue_depth, uint, S_IRUGO | S_IWUSR);
1012MODULE_PARM_DESC(dm_mq_queue_depth, "Queue depth for request-based dm-mq devices");