blk-mq.h 7.8 KB
Newer Older
1 2 3 4 5 6
#ifndef BLK_MQ_H
#define BLK_MQ_H

#include <linux/blkdev.h>

struct blk_mq_tags;
7
struct blk_flush_queue;
8 9 10 11

struct blk_mq_cpu_notifier {
	struct list_head list;
	void *data;
12
	int (*notify)(void *data, unsigned long action, unsigned int cpu);
13 14
};

15
struct blk_mq_ctxmap {
16
	unsigned int size;
17 18 19 20
	unsigned int bits_per_word;
	struct blk_align_bitmap *map;
};

21 22 23 24
struct blk_mq_hw_ctx {
	struct {
		spinlock_t		lock;
		struct list_head	dispatch;
25
		unsigned long		state;		/* BLK_MQ_S_* flags */
26 27
	} ____cacheline_aligned_in_smp;

28
	struct work_struct	run_work;
29
	cpumask_var_t		cpumask;
30 31
	int			next_cpu;
	int			next_cpu_batch;
32 33 34 35

	unsigned long		flags;		/* BLK_MQ_F_* flags */

	struct request_queue	*queue;
36
	struct blk_flush_queue	*fq;
37 38 39

	void			*driver_data;

40 41
	struct blk_mq_ctxmap	ctx_map;

42
	struct blk_mq_ctx	**ctxs;
43
	unsigned int		nr_ctx;
44

45
	atomic_t		wait_index;
46 47 48 49 50

	struct blk_mq_tags	*tags;

	unsigned long		queued;
	unsigned long		run;
51
#define BLK_MQ_MAX_DISPATCH_ORDER	7
52 53 54
	unsigned long		dispatched[BLK_MQ_MAX_DISPATCH_ORDER];

	unsigned int		numa_node;
55
	unsigned int		queue_num;
56

57 58
	atomic_t		nr_active;

59 60
	struct delayed_work	delay_work;

61 62
	struct blk_mq_cpu_notifier	cpu_notifier;
	struct kobject		kobj;
J
Jens Axboe 已提交
63

64
	unsigned long		poll_considered;
J
Jens Axboe 已提交
65 66
	unsigned long		poll_invoked;
	unsigned long		poll_success;
67 68
};

69
struct blk_mq_tag_set {
70 71
	struct blk_mq_ops	*ops;
	unsigned int		nr_hw_queues;
72
	unsigned int		queue_depth;	/* max hw supported */
73 74 75 76 77
	unsigned int		reserved_tags;
	unsigned int		cmd_size;	/* per-request extra data */
	int			numa_node;
	unsigned int		timeout;
	unsigned int		flags;		/* BLK_MQ_F_* */
78 79 80
	void			*driver_data;

	struct blk_mq_tags	**tags;
81 82 83

	struct mutex		tag_list_lock;
	struct list_head	tag_list;
84 85
};

86 87 88 89 90 91 92
struct blk_mq_queue_data {
	struct request *rq;
	struct list_head *list;
	bool last;
};

typedef int (queue_rq_fn)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *);
93
typedef struct blk_mq_hw_ctx *(map_queue_fn)(struct request_queue *, const int);
94
typedef enum blk_eh_timer_return (timeout_fn)(struct request *, bool);
95 96
typedef int (init_hctx_fn)(struct blk_mq_hw_ctx *, void *, unsigned int);
typedef void (exit_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int);
97 98 99 100
typedef int (init_request_fn)(void *, struct request *, unsigned int,
		unsigned int, unsigned int);
typedef void (exit_request_fn)(void *, struct request *, unsigned int,
		unsigned int);
101
typedef int (reinit_request_fn)(void *, struct request *);
102

103 104
typedef void (busy_iter_fn)(struct blk_mq_hw_ctx *, struct request *, void *,
		bool);
K
Keith Busch 已提交
105
typedef void (busy_tag_iter_fn)(struct request *, void *, bool);
J
Jens Axboe 已提交
106 107
typedef int (poll_fn)(struct blk_mq_hw_ctx *, unsigned int);

108

109 110 111 112 113 114 115 116 117 118 119 120 121 122
struct blk_mq_ops {
	/*
	 * Queue request
	 */
	queue_rq_fn		*queue_rq;

	/*
	 * Map to specific hardware queue
	 */
	map_queue_fn		*map_queue;

	/*
	 * Called on request timeout
	 */
123
	timeout_fn		*timeout;
124

J
Jens Axboe 已提交
125 126 127 128 129
	/*
	 * Called to poll for completion of a specific tag.
	 */
	poll_fn			*poll;

130 131
	softirq_done_fn		*complete;

132 133 134 135 136 137 138
	/*
	 * Called when the block layer side of a hardware queue has been
	 * set up, allowing the driver to allocate/init matching structures.
	 * Ditto for exit/teardown.
	 */
	init_hctx_fn		*init_hctx;
	exit_hctx_fn		*exit_hctx;
139 140 141 142

	/*
	 * Called for every command allocated by the block layer to allow
	 * the driver to set up driver specific data.
143 144 145 146
	 *
	 * Tag greater than or equal to queue_depth is for setting up
	 * flush request.
	 *
147 148 149 150
	 * Ditto for exit/teardown.
	 */
	init_request_fn		*init_request;
	exit_request_fn		*exit_request;
151
	reinit_request_fn	*reinit_request;
152 153 154 155 156 157 158 159
};

enum {
	BLK_MQ_RQ_QUEUE_OK	= 0,	/* queued fine */
	BLK_MQ_RQ_QUEUE_BUSY	= 1,	/* requeue IO for later */
	BLK_MQ_RQ_QUEUE_ERROR	= 2,	/* end IO with error */

	BLK_MQ_F_SHOULD_MERGE	= 1 << 0,
160 161
	BLK_MQ_F_TAG_SHARED	= 1 << 1,
	BLK_MQ_F_SG_MERGE	= 1 << 2,
162
	BLK_MQ_F_DEFER_ISSUE	= 1 << 4,
S
Shaohua Li 已提交
163 164
	BLK_MQ_F_ALLOC_POLICY_START_BIT = 8,
	BLK_MQ_F_ALLOC_POLICY_BITS = 1,
165

166
	BLK_MQ_S_STOPPED	= 0,
167
	BLK_MQ_S_TAG_ACTIVE	= 1,
168

169
	BLK_MQ_MAX_DEPTH	= 10240,
170 171

	BLK_MQ_CPU_WORK_BATCH	= 8,
172
};
S
Shaohua Li 已提交
173 174 175 176 177 178
#define BLK_MQ_FLAG_TO_ALLOC_POLICY(flags) \
	((flags >> BLK_MQ_F_ALLOC_POLICY_START_BIT) & \
		((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1))
#define BLK_ALLOC_POLICY_TO_MQ_FLAG(policy) \
	((policy & ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) \
		<< BLK_MQ_F_ALLOC_POLICY_START_BIT)
179

180
struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *);
181 182
struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
						  struct request_queue *q);
183 184 185
int blk_mq_register_disk(struct gendisk *);
void blk_mq_unregister_disk(struct gendisk *);

186 187 188
int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set);
void blk_mq_free_tag_set(struct blk_mq_tag_set *set);

189 190
void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule);

191
void blk_mq_insert_request(struct request *, bool, bool, bool);
192
void blk_mq_free_request(struct request *rq);
193
void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq);
194
bool blk_mq_can_queue(struct blk_mq_hw_ctx *);
195 196 197 198 199 200

enum {
	BLK_MQ_REQ_NOWAIT	= (1 << 0), /* return when out of requests */
	BLK_MQ_REQ_RESERVED	= (1 << 1), /* allocate from reserved pool */
};

201
struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
202
		unsigned int flags);
M
Ming Lin 已提交
203 204
struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int op,
		unsigned int flags, unsigned int hctx_idx);
205
struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag);
K
Keith Busch 已提交
206
struct cpumask *blk_mq_tags_cpumask(struct blk_mq_tags *tags);
207

B
Bart Van Assche 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
enum {
	BLK_MQ_UNIQUE_TAG_BITS = 16,
	BLK_MQ_UNIQUE_TAG_MASK = (1 << BLK_MQ_UNIQUE_TAG_BITS) - 1,
};

u32 blk_mq_unique_tag(struct request *rq);

static inline u16 blk_mq_unique_tag_to_hwq(u32 unique_tag)
{
	return unique_tag >> BLK_MQ_UNIQUE_TAG_BITS;
}

static inline u16 blk_mq_unique_tag_to_tag(u32 unique_tag)
{
	return unique_tag & BLK_MQ_UNIQUE_TAG_MASK;
}

225 226
struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *, const int ctx_index);

227
int blk_mq_request_started(struct request *rq);
228
void blk_mq_start_request(struct request *rq);
229 230
void blk_mq_end_request(struct request *rq, int error);
void __blk_mq_end_request(struct request *rq, int error);
231

232
void blk_mq_requeue_request(struct request *rq);
233
void blk_mq_add_to_requeue_list(struct request *rq, bool at_head);
234
void blk_mq_cancel_requeue_work(struct request_queue *q);
235
void blk_mq_kick_requeue_list(struct request_queue *q);
236
void blk_mq_delay_kick_requeue_list(struct request_queue *q, unsigned long msecs);
237
void blk_mq_abort_requeue_list(struct request_queue *q);
238
void blk_mq_complete_request(struct request *rq, int error);
239

240 241
void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx);
void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx);
242
void blk_mq_stop_hw_queues(struct request_queue *q);
243
void blk_mq_start_hw_queues(struct request_queue *q);
244
void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async);
245
void blk_mq_run_hw_queues(struct request_queue *q, bool async);
246
void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs);
247 248
void blk_mq_tagset_busy_iter(struct blk_mq_tag_set *tagset,
		busy_tag_iter_fn *fn, void *priv);
249
void blk_mq_freeze_queue(struct request_queue *q);
250 251
void blk_mq_unfreeze_queue(struct request_queue *q);
void blk_mq_freeze_queue_start(struct request_queue *q);
252
int blk_mq_reinit_tagset(struct blk_mq_tag_set *set);
253

K
Keith Busch 已提交
254 255
void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues);

256 257
/*
 * Driver command data is immediately after the request. So subtract request
J
Jens Axboe 已提交
258
 * size to get back to the original request, add request size to get the PDU.
259 260 261 262 263 264 265
 */
static inline struct request *blk_mq_rq_from_pdu(void *pdu)
{
	return pdu - sizeof(struct request);
}
static inline void *blk_mq_rq_to_pdu(struct request *rq)
{
J
Jens Axboe 已提交
266
	return rq + 1;
267 268 269
}

#define queue_for_each_hw_ctx(q, hctx, i)				\
270 271
	for ((i) = 0; (i) < (q)->nr_hw_queues &&			\
	     ({ hctx = (q)->queue_hw_ctx[i]; 1; }); (i)++)
272 273

#define hctx_for_each_ctx(hctx, ctx, i)					\
274 275
	for ((i) = 0; (i) < (hctx)->nr_ctx &&				\
	     ({ ctx = (hctx)->ctxs[(i)]; 1; }); (i)++)
276 277

#endif