Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1 | #ifndef INT_BLK_MQ_H |
| 2 | #define INT_BLK_MQ_H |
| 3 | |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 4 | #include "blk-stat.h" |
Ming Lei | 244c65a | 2017-11-04 12:39:57 -0600 | [diff] [blame^] | 5 | #include "blk-mq-tag.h" |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 6 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 7 | struct blk_mq_tag_set; |
| 8 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 9 | struct blk_mq_ctx { |
| 10 | struct { |
| 11 | spinlock_t lock; |
| 12 | struct list_head rq_list; |
| 13 | } ____cacheline_aligned_in_smp; |
| 14 | |
| 15 | unsigned int cpu; |
| 16 | unsigned int index_hw; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 17 | |
| 18 | /* incremented at dispatch time */ |
| 19 | unsigned long rq_dispatched[2]; |
| 20 | unsigned long rq_merged; |
| 21 | |
| 22 | /* incremented at completion time */ |
| 23 | unsigned long ____cacheline_aligned_in_smp rq_completed[2]; |
| 24 | |
| 25 | struct request_queue *queue; |
| 26 | struct kobject kobj; |
Jens Axboe | 4bb659b | 2014-05-09 09:36:49 -0600 | [diff] [blame] | 27 | } ____cacheline_aligned_in_smp; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 28 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 29 | void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async); |
Tejun Heo | 780db20 | 2014-07-01 10:31:13 -0600 | [diff] [blame] | 30 | void blk_mq_freeze_queue(struct request_queue *q); |
Ming Lei | 3edcc0c | 2013-12-26 21:31:38 +0800 | [diff] [blame] | 31 | void blk_mq_free_queue(struct request_queue *q); |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 32 | int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr); |
Jens Axboe | aed3ea9 | 2014-12-22 14:04:42 -0700 | [diff] [blame] | 33 | void blk_mq_wake_waiters(struct request_queue *q); |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 34 | bool blk_mq_dispatch_rq_list(struct request_queue *, struct list_head *, bool); |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 35 | void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list); |
Jens Axboe | 50e1dab | 2017-01-26 14:42:34 -0700 | [diff] [blame] | 36 | bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx); |
Jens Axboe | bd6737f | 2017-01-27 01:00:47 -0700 | [diff] [blame] | 37 | bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx, |
| 38 | bool wait); |
Ming Lei | b347689 | 2017-10-14 17:22:30 +0800 | [diff] [blame] | 39 | struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx, |
| 40 | struct blk_mq_ctx *start); |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 41 | |
| 42 | /* |
| 43 | * Internal helpers for allocating/freeing the request map |
| 44 | */ |
Jens Axboe | cc71a6f | 2017-01-11 14:29:56 -0700 | [diff] [blame] | 45 | void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, |
| 46 | unsigned int hctx_idx); |
| 47 | void blk_mq_free_rq_map(struct blk_mq_tags *tags); |
| 48 | struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, |
| 49 | unsigned int hctx_idx, |
| 50 | unsigned int nr_tags, |
| 51 | unsigned int reserved_tags); |
| 52 | int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags, |
| 53 | unsigned int hctx_idx, unsigned int depth); |
Jens Axboe | 2c3ad66 | 2016-12-14 14:34:47 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * Internal helpers for request insertion into sw queues |
| 57 | */ |
| 58 | void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, |
| 59 | bool at_head); |
Ming Lei | b085029 | 2017-11-02 23:24:34 +0800 | [diff] [blame] | 60 | void blk_mq_request_bypass_insert(struct request *rq, bool run_queue); |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 61 | void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx, |
| 62 | struct list_head *list); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * CPU -> queue mappings |
| 66 | */ |
Jens Axboe | f14bbe7 | 2014-05-27 12:06:53 -0600 | [diff] [blame] | 67 | extern int blk_mq_hw_queue_to_node(unsigned int *map, unsigned int); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 68 | |
Christoph Hellwig | 7d7e0f9 | 2016-09-14 16:18:54 +0200 | [diff] [blame] | 69 | static inline struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, |
| 70 | int cpu) |
| 71 | { |
| 72 | return q->queue_hw_ctx[q->mq_map[cpu]]; |
| 73 | } |
| 74 | |
Jens Axboe | e93ecf6 | 2014-05-19 09:17:48 -0600 | [diff] [blame] | 75 | /* |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 76 | * sysfs helpers |
| 77 | */ |
Ming Lei | 737f98c | 2017-02-22 18:13:59 +0800 | [diff] [blame] | 78 | extern void blk_mq_sysfs_init(struct request_queue *q); |
Ming Lei | 7ea5fe3 | 2017-02-22 18:14:00 +0800 | [diff] [blame] | 79 | extern void blk_mq_sysfs_deinit(struct request_queue *q); |
Bart Van Assche | 2d0364c | 2017-04-26 13:47:48 -0700 | [diff] [blame] | 80 | extern int __blk_mq_register_dev(struct device *dev, struct request_queue *q); |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 81 | extern int blk_mq_sysfs_register(struct request_queue *q); |
| 82 | extern void blk_mq_sysfs_unregister(struct request_queue *q); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 83 | extern void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx); |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 84 | |
Christoph Hellwig | 9041583 | 2014-09-22 10:21:48 -0600 | [diff] [blame] | 85 | extern void blk_mq_rq_timed_out(struct request *req, bool reserved); |
| 86 | |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 87 | void blk_mq_release(struct request_queue *q); |
| 88 | |
Ming Lei | 1aecfe4 | 2014-06-01 00:43:36 +0800 | [diff] [blame] | 89 | static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q, |
| 90 | unsigned int cpu) |
| 91 | { |
| 92 | return per_cpu_ptr(q->queue_ctx, cpu); |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * This assumes per-cpu software queueing queues. They could be per-node |
| 97 | * as well, for instance. For now this is hardcoded as-is. Note that we don't |
| 98 | * care about preemption, since we know the ctx's are persistent. This does |
| 99 | * mean that we can't rely on ctx always matching the currently running CPU. |
| 100 | */ |
| 101 | static inline struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q) |
| 102 | { |
| 103 | return __blk_mq_get_ctx(q, get_cpu()); |
| 104 | } |
| 105 | |
| 106 | static inline void blk_mq_put_ctx(struct blk_mq_ctx *ctx) |
| 107 | { |
| 108 | put_cpu(); |
| 109 | } |
| 110 | |
Ming Lei | cb96a42c | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 111 | struct blk_mq_alloc_data { |
| 112 | /* input parameter */ |
| 113 | struct request_queue *q; |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 114 | unsigned int flags; |
Omar Sandoval | 229a9287 | 2017-04-14 00:59:59 -0700 | [diff] [blame] | 115 | unsigned int shallow_depth; |
Ming Lei | cb96a42c | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 116 | |
| 117 | /* input & output parameter */ |
| 118 | struct blk_mq_ctx *ctx; |
| 119 | struct blk_mq_hw_ctx *hctx; |
| 120 | }; |
| 121 | |
Jens Axboe | 4941115 | 2017-01-13 08:09:05 -0700 | [diff] [blame] | 122 | static inline struct blk_mq_tags *blk_mq_tags_from_data(struct blk_mq_alloc_data *data) |
| 123 | { |
Jens Axboe | bd166ef | 2017-01-17 06:03:22 -0700 | [diff] [blame] | 124 | if (data->flags & BLK_MQ_REQ_INTERNAL) |
| 125 | return data->hctx->sched_tags; |
| 126 | |
Jens Axboe | 4941115 | 2017-01-13 08:09:05 -0700 | [diff] [blame] | 127 | return data->hctx->tags; |
| 128 | } |
| 129 | |
Bart Van Assche | 5d1b25c | 2016-10-28 17:19:15 -0700 | [diff] [blame] | 130 | static inline bool blk_mq_hctx_stopped(struct blk_mq_hw_ctx *hctx) |
| 131 | { |
| 132 | return test_bit(BLK_MQ_S_STOPPED, &hctx->state); |
| 133 | } |
| 134 | |
Ming Lei | 19c66e5 | 2014-12-03 19:38:04 +0800 | [diff] [blame] | 135 | static inline bool blk_mq_hw_queue_mapped(struct blk_mq_hw_ctx *hctx) |
| 136 | { |
| 137 | return hctx->nr_ctx && hctx->tags; |
| 138 | } |
| 139 | |
Jens Axboe | f299b7c | 2017-08-08 17:51:45 -0600 | [diff] [blame] | 140 | void blk_mq_in_flight(struct request_queue *q, struct hd_struct *part, |
| 141 | unsigned int inflight[2]); |
| 142 | |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 143 | static inline void blk_mq_put_dispatch_budget(struct blk_mq_hw_ctx *hctx) |
| 144 | { |
| 145 | struct request_queue *q = hctx->queue; |
| 146 | |
| 147 | if (q->mq_ops->put_budget) |
| 148 | q->mq_ops->put_budget(hctx); |
| 149 | } |
| 150 | |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 151 | static inline bool blk_mq_get_dispatch_budget(struct blk_mq_hw_ctx *hctx) |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 152 | { |
| 153 | struct request_queue *q = hctx->queue; |
| 154 | |
| 155 | if (q->mq_ops->get_budget) |
| 156 | return q->mq_ops->get_budget(hctx); |
Ming Lei | 88022d7 | 2017-11-05 02:21:12 +0800 | [diff] [blame] | 157 | return true; |
Ming Lei | de14829 | 2017-10-14 17:22:29 +0800 | [diff] [blame] | 158 | } |
| 159 | |
Ming Lei | 244c65a | 2017-11-04 12:39:57 -0600 | [diff] [blame^] | 160 | static inline void __blk_mq_put_driver_tag(struct blk_mq_hw_ctx *hctx, |
| 161 | struct request *rq) |
| 162 | { |
| 163 | blk_mq_put_tag(hctx, hctx->tags, rq->mq_ctx, rq->tag); |
| 164 | rq->tag = -1; |
| 165 | |
| 166 | if (rq->rq_flags & RQF_MQ_INFLIGHT) { |
| 167 | rq->rq_flags &= ~RQF_MQ_INFLIGHT; |
| 168 | atomic_dec(&hctx->nr_active); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | static inline void blk_mq_put_driver_tag_hctx(struct blk_mq_hw_ctx *hctx, |
| 173 | struct request *rq) |
| 174 | { |
| 175 | if (rq->tag == -1 || rq->internal_tag == -1) |
| 176 | return; |
| 177 | |
| 178 | __blk_mq_put_driver_tag(hctx, rq); |
| 179 | } |
| 180 | |
| 181 | static inline void blk_mq_put_driver_tag(struct request *rq) |
| 182 | { |
| 183 | struct blk_mq_hw_ctx *hctx; |
| 184 | |
| 185 | if (rq->tag == -1 || rq->internal_tag == -1) |
| 186 | return; |
| 187 | |
| 188 | hctx = blk_mq_map_queue(rq->q, rq->mq_ctx->cpu); |
| 189 | __blk_mq_put_driver_tag(hctx, rq); |
| 190 | } |
| 191 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 192 | #endif |