blob: c92bb7debf85f638b008fc8ff6f548729b6efb5b [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#ifndef INT_BLK_MQ_H
2#define INT_BLK_MQ_H
3
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004struct blk_mq_tag_set;
5
Jens Axboe320ae512013-10-24 09:20:05 +01006struct 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 Axboe320ae512013-10-24 09:20:05 +010014
Jens Axboe4bb659b2014-05-09 09:36:49 -060015 unsigned int last_tag ____cacheline_aligned_in_smp;
16
Jens Axboe320ae512013-10-24 09:20:05 +010017 /* incremented at dispatch time */
18 unsigned long rq_dispatched[2];
19 unsigned long rq_merged;
20
21 /* incremented at completion time */
22 unsigned long ____cacheline_aligned_in_smp rq_completed[2];
23
24 struct request_queue *queue;
25 struct kobject kobj;
Jens Axboe4bb659b2014-05-09 09:36:49 -060026} ____cacheline_aligned_in_smp;
Jens Axboe320ae512013-10-24 09:20:05 +010027
Jens Axboe320ae512013-10-24 09:20:05 +010028void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async);
Tejun Heo780db202014-07-01 10:31:13 -060029void blk_mq_freeze_queue(struct request_queue *q);
Ming Lei3edcc0c2013-12-26 21:31:38 +080030void blk_mq_free_queue(struct request_queue *q);
Jens Axboee3a2b3f2014-05-20 11:49:02 -060031int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr);
Jens Axboeaed3ea92014-12-22 14:04:42 -070032void blk_mq_wake_waiters(struct request_queue *q);
Jens Axboe320ae512013-10-24 09:20:05 +010033
34/*
35 * CPU hotplug helpers
36 */
37struct blk_mq_cpu_notifier;
38void blk_mq_init_cpu_notifier(struct blk_mq_cpu_notifier *notifier,
Jens Axboee814e712014-05-21 13:59:08 -060039 int (*fn)(void *, unsigned long, unsigned int),
Jens Axboe320ae512013-10-24 09:20:05 +010040 void *data);
41void blk_mq_register_cpu_notifier(struct blk_mq_cpu_notifier *notifier);
42void blk_mq_unregister_cpu_notifier(struct blk_mq_cpu_notifier *notifier);
43void blk_mq_cpu_init(void);
Jens Axboe676141e2014-03-20 13:29:18 -060044void blk_mq_enable_hotplug(void);
45void blk_mq_disable_hotplug(void);
Jens Axboe320ae512013-10-24 09:20:05 +010046
47/*
48 * CPU -> queue mappings
49 */
Christoph Hellwigda695ba2016-09-14 16:18:55 +020050int blk_mq_map_queues(struct blk_mq_tag_set *set);
Jens Axboef14bbe72014-05-27 12:06:53 -060051extern int blk_mq_hw_queue_to_node(unsigned int *map, unsigned int);
Jens Axboe320ae512013-10-24 09:20:05 +010052
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +020053static inline struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q,
54 int cpu)
55{
56 return q->queue_hw_ctx[q->mq_map[cpu]];
57}
58
Jens Axboee93ecf62014-05-19 09:17:48 -060059/*
Jens Axboe67aec142014-05-30 08:25:36 -060060 * sysfs helpers
61 */
62extern int blk_mq_sysfs_register(struct request_queue *q);
63extern void blk_mq_sysfs_unregister(struct request_queue *q);
Keith Busch868f2f02015-12-17 17:08:14 -070064extern void blk_mq_hctx_kobj_init(struct blk_mq_hw_ctx *hctx);
Jens Axboe67aec142014-05-30 08:25:36 -060065
Christoph Hellwig90415832014-09-22 10:21:48 -060066extern void blk_mq_rq_timed_out(struct request *req, bool reserved);
67
Ming Leie09aae72015-01-29 20:17:27 +080068void blk_mq_release(struct request_queue *q);
69
Jens Axboe67aec142014-05-30 08:25:36 -060070/*
Jens Axboee93ecf62014-05-19 09:17:48 -060071 * Basic implementation of sparser bitmap, allowing the user to spread
72 * the bits over more cachelines.
73 */
74struct blk_align_bitmap {
75 unsigned long word;
76 unsigned long depth;
77} ____cacheline_aligned_in_smp;
78
Ming Lei1aecfe42014-06-01 00:43:36 +080079static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q,
80 unsigned int cpu)
81{
82 return per_cpu_ptr(q->queue_ctx, cpu);
83}
84
85/*
86 * This assumes per-cpu software queueing queues. They could be per-node
87 * as well, for instance. For now this is hardcoded as-is. Note that we don't
88 * care about preemption, since we know the ctx's are persistent. This does
89 * mean that we can't rely on ctx always matching the currently running CPU.
90 */
91static inline struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q)
92{
93 return __blk_mq_get_ctx(q, get_cpu());
94}
95
96static inline void blk_mq_put_ctx(struct blk_mq_ctx *ctx)
97{
98 put_cpu();
99}
100
Ming Leicb96a422014-06-01 00:43:37 +0800101struct blk_mq_alloc_data {
102 /* input parameter */
103 struct request_queue *q;
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100104 unsigned int flags;
Ming Leicb96a422014-06-01 00:43:37 +0800105
106 /* input & output parameter */
107 struct blk_mq_ctx *ctx;
108 struct blk_mq_hw_ctx *hctx;
109};
110
111static inline void blk_mq_set_alloc_data(struct blk_mq_alloc_data *data,
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100112 struct request_queue *q, unsigned int flags,
113 struct blk_mq_ctx *ctx, struct blk_mq_hw_ctx *hctx)
Ming Leicb96a422014-06-01 00:43:37 +0800114{
115 data->q = q;
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100116 data->flags = flags;
Ming Leicb96a422014-06-01 00:43:37 +0800117 data->ctx = ctx;
118 data->hctx = hctx;
119}
120
Ming Lei19c66e52014-12-03 19:38:04 +0800121static inline bool blk_mq_hw_queue_mapped(struct blk_mq_hw_ctx *hctx)
122{
123 return hctx->nr_ctx && hctx->tags;
124}
125
Jens Axboe320ae512013-10-24 09:20:05 +0100126#endif