blk-mq-tag.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #ifndef INT_BLK_MQ_TAG_H
  2. #define INT_BLK_MQ_TAG_H
  3. #include "blk-mq.h"
  4. /*
  5. * Tag address space map.
  6. */
  7. struct blk_mq_tags {
  8. unsigned int nr_tags;
  9. unsigned int nr_reserved_tags;
  10. atomic_t active_queues;
  11. struct sbitmap_queue bitmap_tags;
  12. struct sbitmap_queue breserved_tags;
  13. struct request **rqs;
  14. struct list_head page_list;
  15. };
  16. extern struct blk_mq_tags *blk_mq_init_tags(unsigned int nr_tags, unsigned int reserved_tags, int node, int alloc_policy);
  17. extern void blk_mq_free_tags(struct blk_mq_tags *tags);
  18. extern unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data);
  19. extern void blk_mq_put_tag(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
  20. unsigned int tag);
  21. extern bool blk_mq_has_free_tags(struct blk_mq_tags *tags);
  22. extern ssize_t blk_mq_tag_sysfs_show(struct blk_mq_tags *tags, char *page);
  23. extern int blk_mq_tag_update_depth(struct blk_mq_tags *tags, unsigned int depth);
  24. extern void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool);
  25. void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_iter_fn *fn,
  26. void *priv);
  27. static inline struct sbq_wait_state *bt_wait_ptr(struct sbitmap_queue *bt,
  28. struct blk_mq_hw_ctx *hctx)
  29. {
  30. if (!hctx)
  31. return &bt->ws[0];
  32. return sbq_wait_ptr(bt, &hctx->wait_index);
  33. }
  34. enum {
  35. BLK_MQ_TAG_CACHE_MIN = 1,
  36. BLK_MQ_TAG_CACHE_MAX = 64,
  37. };
  38. enum {
  39. BLK_MQ_TAG_FAIL = -1U,
  40. BLK_MQ_TAG_MIN = BLK_MQ_TAG_CACHE_MIN,
  41. BLK_MQ_TAG_MAX = BLK_MQ_TAG_FAIL - 1,
  42. };
  43. extern bool __blk_mq_tag_busy(struct blk_mq_hw_ctx *);
  44. extern void __blk_mq_tag_idle(struct blk_mq_hw_ctx *);
  45. static inline bool blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
  46. {
  47. if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
  48. return false;
  49. return __blk_mq_tag_busy(hctx);
  50. }
  51. static inline void blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
  52. {
  53. if (!(hctx->flags & BLK_MQ_F_TAG_SHARED))
  54. return;
  55. __blk_mq_tag_idle(hctx);
  56. }
  57. /*
  58. * This helper should only be used for flush request to share tag
  59. * with the request cloned from, and both the two requests can't be
  60. * in flight at the same time. The caller has to make sure the tag
  61. * can't be freed.
  62. */
  63. static inline void blk_mq_tag_set_rq(struct blk_mq_hw_ctx *hctx,
  64. unsigned int tag, struct request *rq)
  65. {
  66. hctx->tags->rqs[tag] = rq;
  67. }
  68. #endif