blob: d468a79f2c4a2c11a00387816bcc03b64aea09d1 [file] [log] [blame]
Jens Axboe320ae512013-10-24 09:20:05 +01001#ifndef INT_BLK_MQ_TAG_H
2#define INT_BLK_MQ_TAG_H
3
Jens Axboee93ecf62014-05-19 09:17:48 -06004#include "blk-mq.h"
5
Jens Axboe4bb659b2014-05-09 09:36:49 -06006enum {
7 BT_WAIT_QUEUES = 8,
8 BT_WAIT_BATCH = 8,
9};
10
11struct bt_wait_state {
12 atomic_t wait_cnt;
13 wait_queue_head_t wait;
14} ____cacheline_aligned_in_smp;
15
Jens Axboe59d13bf2014-05-09 13:41:15 -060016#define TAG_TO_INDEX(bt, tag) ((tag) >> (bt)->bits_per_word)
17#define TAG_TO_BIT(bt, tag) ((tag) & ((1 << (bt)->bits_per_word) - 1))
Jens Axboe4bb659b2014-05-09 09:36:49 -060018
Jens Axboe4bb659b2014-05-09 09:36:49 -060019struct blk_mq_bitmap_tags {
20 unsigned int depth;
21 unsigned int wake_cnt;
Jens Axboe59d13bf2014-05-09 13:41:15 -060022 unsigned int bits_per_word;
Jens Axboe4bb659b2014-05-09 09:36:49 -060023
Jens Axboe4bb659b2014-05-09 09:36:49 -060024 unsigned int map_nr;
Jens Axboee93ecf62014-05-19 09:17:48 -060025 struct blk_align_bitmap *map;
Jens Axboe4bb659b2014-05-09 09:36:49 -060026
Alexander Gordeev8537b122014-06-17 22:12:35 -070027 atomic_t wake_index;
Jens Axboe4bb659b2014-05-09 09:36:49 -060028 struct bt_wait_state *bs;
29};
Christoph Hellwig24d2f902014-04-15 14:14:00 -060030
31/*
32 * Tag address space map.
33 */
34struct blk_mq_tags {
35 unsigned int nr_tags;
36 unsigned int nr_reserved_tags;
Christoph Hellwig24d2f902014-04-15 14:14:00 -060037
Jens Axboe0d2602c2014-05-13 15:10:52 -060038 atomic_t active_queues;
39
Jens Axboe4bb659b2014-05-09 09:36:49 -060040 struct blk_mq_bitmap_tags bitmap_tags;
41 struct blk_mq_bitmap_tags breserved_tags;
Christoph Hellwig24d2f902014-04-15 14:14:00 -060042
43 struct request **rqs;
44 struct list_head page_list;
Shaohua Li24391c02015-01-23 14:18:00 -070045
46 int alloc_policy;
Keith Buschf26cdc82015-06-01 09:29:53 -060047 cpumask_var_t cpumask;
Christoph Hellwig24d2f902014-04-15 14:14:00 -060048};
49
Jens Axboe320ae512013-10-24 09:20:05 +010050
Shaohua Li24391c02015-01-23 14:18:00 -070051extern struct blk_mq_tags *blk_mq_init_tags(unsigned int nr_tags, unsigned int reserved_tags, int node, int alloc_policy);
Jens Axboe320ae512013-10-24 09:20:05 +010052extern void blk_mq_free_tags(struct blk_mq_tags *tags);
53
Ming Leicb96a422014-06-01 00:43:37 +080054extern unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data);
Jens Axboe0d2602c2014-05-13 15:10:52 -060055extern void blk_mq_put_tag(struct blk_mq_hw_ctx *hctx, unsigned int tag, unsigned int *last_tag);
Jens Axboe320ae512013-10-24 09:20:05 +010056extern bool blk_mq_has_free_tags(struct blk_mq_tags *tags);
57extern ssize_t blk_mq_tag_sysfs_show(struct blk_mq_tags *tags, char *page);
Jens Axboe4bb659b2014-05-09 09:36:49 -060058extern void blk_mq_tag_init_last_tag(struct blk_mq_tags *tags, unsigned int *last_tag);
Jens Axboee3a2b3f2014-05-20 11:49:02 -060059extern int blk_mq_tag_update_depth(struct blk_mq_tags *tags, unsigned int depth);
Jens Axboeaed3ea92014-12-22 14:04:42 -070060extern void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool);
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +020061void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_iter_fn *fn,
62 void *priv);
Jens Axboe320ae512013-10-24 09:20:05 +010063
64enum {
65 BLK_MQ_TAG_CACHE_MIN = 1,
66 BLK_MQ_TAG_CACHE_MAX = 64,
67};
68
69enum {
70 BLK_MQ_TAG_FAIL = -1U,
71 BLK_MQ_TAG_MIN = BLK_MQ_TAG_CACHE_MIN,
72 BLK_MQ_TAG_MAX = BLK_MQ_TAG_FAIL - 1,
73};
74
Jens Axboe0d2602c2014-05-13 15:10:52 -060075extern bool __blk_mq_tag_busy(struct blk_mq_hw_ctx *);
76extern void __blk_mq_tag_idle(struct blk_mq_hw_ctx *);
77
78static inline bool blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
79{
80 if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
81 return false;
82
83 return __blk_mq_tag_busy(hctx);
84}
85
86static inline void blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
87{
88 if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
89 return;
90
91 __blk_mq_tag_idle(hctx);
92}
93
Ming Lei0048b482015-08-09 03:41:51 -040094/*
95 * This helper should only be used for flush request to share tag
96 * with the request cloned from, and both the two requests can't be
97 * in flight at the same time. The caller has to make sure the tag
98 * can't be freed.
99 */
100static inline void blk_mq_tag_set_rq(struct blk_mq_hw_ctx *hctx,
101 unsigned int tag, struct request *rq)
102{
103 hctx->tags->rqs[tag] = rq;
104}
105
Jens Axboe320ae512013-10-24 09:20:05 +0100106#endif