Blame view

block/blk-mq-tag.h 2.3 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
320ae51fe   Jens Axboe   blk-mq: new multi...
2
3
  #ifndef INT_BLK_MQ_TAG_H
  #define INT_BLK_MQ_TAG_H
e93ecf602   Jens Axboe   blk-mq: move the ...
4
  #include "blk-mq.h"
24d2f9030   Christoph Hellwig   blk-mq: split out...
5
6
7
8
9
10
  /*
   * Tag address space map.
   */
  struct blk_mq_tags {
  	unsigned int nr_tags;
  	unsigned int nr_reserved_tags;
24d2f9030   Christoph Hellwig   blk-mq: split out...
11

0d2602ca3   Jens Axboe   blk-mq: improve s...
12
  	atomic_t active_queues;
88459642c   Omar Sandoval   blk-mq: abstract ...
13
14
  	struct sbitmap_queue bitmap_tags;
  	struct sbitmap_queue breserved_tags;
24d2f9030   Christoph Hellwig   blk-mq: split out...
15
16
  
  	struct request **rqs;
2af8cbe30   Jens Axboe   blk-mq: split tag...
17
  	struct request **static_rqs;
24d2f9030   Christoph Hellwig   blk-mq: split out...
18
19
  	struct list_head page_list;
  };
320ae51fe   Jens Axboe   blk-mq: new multi...
20

24391c0dc   Shaohua Li   blk-mq: add tag a...
21
  extern struct blk_mq_tags *blk_mq_init_tags(unsigned int nr_tags, unsigned int reserved_tags, int node, int alloc_policy);
320ae51fe   Jens Axboe   blk-mq: new multi...
22
  extern void blk_mq_free_tags(struct blk_mq_tags *tags);
cb96a42cc   Ming Lei   blk-mq: fix sched...
23
  extern unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data);
4941115be   Jens Axboe   blk-mq-tag: clean...
24
25
  extern void blk_mq_put_tag(struct blk_mq_hw_ctx *hctx, struct blk_mq_tags *tags,
  			   struct blk_mq_ctx *ctx, unsigned int tag);
320ae51fe   Jens Axboe   blk-mq: new multi...
26
  extern bool blk_mq_has_free_tags(struct blk_mq_tags *tags);
70f36b600   Jens Axboe   blk-mq: allow res...
27
28
29
  extern int blk_mq_tag_update_depth(struct blk_mq_hw_ctx *hctx,
  					struct blk_mq_tags **tags,
  					unsigned int depth, bool can_grow);
aed3ea94b   Jens Axboe   block: wake up wa...
30
  extern void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool);
0bf6cd5b9   Christoph Hellwig   blk-mq: factor ou...
31
32
  void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_iter_fn *fn,
  		void *priv);
320ae51fe   Jens Axboe   blk-mq: new multi...
33

88459642c   Omar Sandoval   blk-mq: abstract ...
34
35
36
37
38
39
40
  static inline struct sbq_wait_state *bt_wait_ptr(struct sbitmap_queue *bt,
  						 struct blk_mq_hw_ctx *hctx)
  {
  	if (!hctx)
  		return &bt->ws[0];
  	return sbq_wait_ptr(bt, &hctx->wait_index);
  }
320ae51fe   Jens Axboe   blk-mq: new multi...
41
  enum {
320ae51fe   Jens Axboe   blk-mq: new multi...
42
  	BLK_MQ_TAG_FAIL		= -1U,
5385fa47d   Jens Axboe   blk-mq-tag: kill ...
43
  	BLK_MQ_TAG_MIN		= 1,
320ae51fe   Jens Axboe   blk-mq: new multi...
44
45
  	BLK_MQ_TAG_MAX		= BLK_MQ_TAG_FAIL - 1,
  };
0d2602ca3   Jens Axboe   blk-mq: improve s...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  extern bool __blk_mq_tag_busy(struct blk_mq_hw_ctx *);
  extern void __blk_mq_tag_idle(struct blk_mq_hw_ctx *);
  
  static inline bool blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
  {
  	if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
  		return false;
  
  	return __blk_mq_tag_busy(hctx);
  }
  
  static inline void blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
  {
  	if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
  		return;
  
  	__blk_mq_tag_idle(hctx);
  }
0048b4837   Ming Lei   blk-mq: fix race ...
64
65
66
67
68
69
70
71
72
73
74
  /*
   * This helper should only be used for flush request to share tag
   * with the request cloned from, and both the two requests can't be
   * in flight at the same time. The caller has to make sure the tag
   * can't be freed.
   */
  static inline void blk_mq_tag_set_rq(struct blk_mq_hw_ctx *hctx,
  		unsigned int tag, struct request *rq)
  {
  	hctx->tags->rqs[tag] = rq;
  }
415b806de   Sagi Grimberg   blk-mq-sched: All...
75
76
77
78
79
  static inline bool blk_mq_tag_is_reserved(struct blk_mq_tags *tags,
  					  unsigned int tag)
  {
  	return tag < tags->nr_reserved_tags;
  }
320ae51fe   Jens Axboe   blk-mq: new multi...
80
  #endif