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 | |
Christoph Hellwig | 24d2f90 | 2014-04-15 14:14:00 -0600 | [diff] [blame] | 4 | struct blk_mq_tag_set; |
| 5 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 6 | struct blk_mq_ctx { |
| 7 | struct { |
| 8 | spinlock_t lock; |
| 9 | struct list_head rq_list; |
| 10 | } ____cacheline_aligned_in_smp; |
| 11 | |
| 12 | unsigned int cpu; |
| 13 | unsigned int index_hw; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 14 | |
| 15 | /* incremented at dispatch time */ |
| 16 | unsigned long rq_dispatched[2]; |
| 17 | unsigned long rq_merged; |
| 18 | |
| 19 | /* incremented at completion time */ |
| 20 | unsigned long ____cacheline_aligned_in_smp rq_completed[2]; |
| 21 | |
| 22 | struct request_queue *queue; |
| 23 | struct kobject kobj; |
Jens Axboe | 4bb659b | 2014-05-09 09:36:49 -0600 | [diff] [blame] | 24 | } ____cacheline_aligned_in_smp; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 25 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 26 | 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] | 27 | void blk_mq_freeze_queue(struct request_queue *q); |
Ming Lei | 3edcc0c | 2013-12-26 21:31:38 +0800 | [diff] [blame] | 28 | void blk_mq_free_queue(struct request_queue *q); |
Jens Axboe | e3a2b3f | 2014-05-20 11:49:02 -0600 | [diff] [blame] | 29 | 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] | 30 | void blk_mq_wake_waiters(struct request_queue *q); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * CPU hotplug helpers |
| 34 | */ |
Jens Axboe | 676141e | 2014-03-20 13:29:18 -0600 | [diff] [blame] | 35 | void blk_mq_enable_hotplug(void); |
| 36 | void blk_mq_disable_hotplug(void); |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * CPU -> queue mappings |
| 40 | */ |
Christoph Hellwig | da695ba | 2016-09-14 16:18:55 +0200 | [diff] [blame] | 41 | int blk_mq_map_queues(struct blk_mq_tag_set *set); |
Jens Axboe | f14bbe7 | 2014-05-27 12:06:53 -0600 | [diff] [blame] | 42 | 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] | 43 | |
Christoph Hellwig | 7d7e0f9 | 2016-09-14 16:18:54 +0200 | [diff] [blame] | 44 | static inline struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, |
| 45 | int cpu) |
| 46 | { |
| 47 | return q->queue_hw_ctx[q->mq_map[cpu]]; |
| 48 | } |
| 49 | |
Jens Axboe | e93ecf6 | 2014-05-19 09:17:48 -0600 | [diff] [blame] | 50 | /* |
Jens Axboe | 67aec14 | 2014-05-30 08:25:36 -0600 | [diff] [blame] | 51 | * sysfs helpers |
| 52 | */ |
| 53 | extern int blk_mq_sysfs_register(struct request_queue *q); |
| 54 | extern void blk_mq_sysfs_unregister(struct request_queue *q); |
Keith Busch | 868f2f0 | 2015-12-17 17:08:14 -0700 | [diff] [blame] | 55 | 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] | 56 | |
Christoph Hellwig | 9041583 | 2014-09-22 10:21:48 -0600 | [diff] [blame] | 57 | extern void blk_mq_rq_timed_out(struct request *req, bool reserved); |
| 58 | |
Ming Lei | e09aae7 | 2015-01-29 20:17:27 +0800 | [diff] [blame] | 59 | void blk_mq_release(struct request_queue *q); |
| 60 | |
Ming Lei | 1aecfe4 | 2014-06-01 00:43:36 +0800 | [diff] [blame] | 61 | static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q, |
| 62 | unsigned int cpu) |
| 63 | { |
| 64 | return per_cpu_ptr(q->queue_ctx, cpu); |
| 65 | } |
| 66 | |
| 67 | /* |
| 68 | * This assumes per-cpu software queueing queues. They could be per-node |
| 69 | * as well, for instance. For now this is hardcoded as-is. Note that we don't |
| 70 | * care about preemption, since we know the ctx's are persistent. This does |
| 71 | * mean that we can't rely on ctx always matching the currently running CPU. |
| 72 | */ |
| 73 | static inline struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q) |
| 74 | { |
| 75 | return __blk_mq_get_ctx(q, get_cpu()); |
| 76 | } |
| 77 | |
| 78 | static inline void blk_mq_put_ctx(struct blk_mq_ctx *ctx) |
| 79 | { |
| 80 | put_cpu(); |
| 81 | } |
| 82 | |
Ming Lei | cb96a42 | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 83 | struct blk_mq_alloc_data { |
| 84 | /* input parameter */ |
| 85 | struct request_queue *q; |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 86 | unsigned int flags; |
Ming Lei | cb96a42 | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 87 | |
| 88 | /* input & output parameter */ |
| 89 | struct blk_mq_ctx *ctx; |
| 90 | struct blk_mq_hw_ctx *hctx; |
| 91 | }; |
| 92 | |
| 93 | static inline void blk_mq_set_alloc_data(struct blk_mq_alloc_data *data, |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 94 | struct request_queue *q, unsigned int flags, |
| 95 | struct blk_mq_ctx *ctx, struct blk_mq_hw_ctx *hctx) |
Ming Lei | cb96a42 | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 96 | { |
| 97 | data->q = q; |
Christoph Hellwig | 6f3b0e8 | 2015-11-26 09:13:05 +0100 | [diff] [blame] | 98 | data->flags = flags; |
Ming Lei | cb96a42 | 2014-06-01 00:43:37 +0800 | [diff] [blame] | 99 | data->ctx = ctx; |
| 100 | data->hctx = hctx; |
| 101 | } |
| 102 | |
Ming Lei | 19c66e5 | 2014-12-03 19:38:04 +0800 | [diff] [blame] | 103 | static inline bool blk_mq_hw_queue_mapped(struct blk_mq_hw_ctx *hctx) |
| 104 | { |
| 105 | return hctx->nr_ctx && hctx->tags; |
| 106 | } |
| 107 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 108 | #endif |