blk-mq.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. #ifndef INT_BLK_MQ_H
  2. #define INT_BLK_MQ_H
  3. struct blk_mq_tag_set;
  4. struct blk_mq_ctx {
  5. struct {
  6. spinlock_t lock;
  7. struct list_head rq_list;
  8. } ____cacheline_aligned_in_smp;
  9. unsigned int cpu;
  10. unsigned int index_hw;
  11. unsigned int last_tag ____cacheline_aligned_in_smp;
  12. /* incremented at dispatch time */
  13. unsigned long rq_dispatched[2];
  14. unsigned long rq_merged;
  15. /* incremented at completion time */
  16. unsigned long ____cacheline_aligned_in_smp rq_completed[2];
  17. struct request_queue *queue;
  18. struct kobject kobj;
  19. } ____cacheline_aligned_in_smp;
  20. void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async);
  21. void blk_mq_freeze_queue(struct request_queue *q);
  22. void blk_mq_free_queue(struct request_queue *q);
  23. int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr);
  24. void blk_mq_wake_waiters(struct request_queue *q);
  25. /*
  26. * CPU hotplug helpers
  27. */
  28. struct blk_mq_cpu_notifier;
  29. void blk_mq_init_cpu_notifier(struct blk_mq_cpu_notifier *notifier,
  30. int (*fn)(void *, unsigned long, unsigned int),
  31. void *data);
  32. void blk_mq_register_cpu_notifier(struct blk_mq_cpu_notifier *notifier);
  33. void blk_mq_unregister_cpu_notifier(struct blk_mq_cpu_notifier *notifier);
  34. void blk_mq_cpu_init(void);
  35. void blk_mq_enable_hotplug(void);
  36. void blk_mq_disable_hotplug(void);
  37. /*
  38. * CPU -> queue mappings
  39. */
  40. extern unsigned int *blk_mq_make_queue_map(struct blk_mq_tag_set *set);
  41. extern int blk_mq_update_queue_map(unsigned int *map, unsigned int nr_queues,
  42. const struct cpumask *online_mask);
  43. extern int blk_mq_hw_queue_to_node(unsigned int *map, unsigned int);
  44. /*
  45. * sysfs helpers
  46. */
  47. extern int blk_mq_sysfs_register(struct request_queue *q);
  48. extern void blk_mq_sysfs_unregister(struct request_queue *q);
  49. extern void blk_mq_rq_timed_out(struct request *req, bool reserved);
  50. void blk_mq_release(struct request_queue *q);
  51. /*
  52. * Basic implementation of sparser bitmap, allowing the user to spread
  53. * the bits over more cachelines.
  54. */
  55. struct blk_align_bitmap {
  56. unsigned long word;
  57. unsigned long depth;
  58. } ____cacheline_aligned_in_smp;
  59. static inline struct blk_mq_ctx *__blk_mq_get_ctx(struct request_queue *q,
  60. unsigned int cpu)
  61. {
  62. return per_cpu_ptr(q->queue_ctx, cpu);
  63. }
  64. /*
  65. * This assumes per-cpu software queueing queues. They could be per-node
  66. * as well, for instance. For now this is hardcoded as-is. Note that we don't
  67. * care about preemption, since we know the ctx's are persistent. This does
  68. * mean that we can't rely on ctx always matching the currently running CPU.
  69. */
  70. static inline struct blk_mq_ctx *blk_mq_get_ctx(struct request_queue *q)
  71. {
  72. return __blk_mq_get_ctx(q, get_cpu());
  73. }
  74. static inline void blk_mq_put_ctx(struct blk_mq_ctx *ctx)
  75. {
  76. put_cpu();
  77. }
  78. struct blk_mq_alloc_data {
  79. /* input parameter */
  80. struct request_queue *q;
  81. gfp_t gfp;
  82. bool reserved;
  83. /* input & output parameter */
  84. struct blk_mq_ctx *ctx;
  85. struct blk_mq_hw_ctx *hctx;
  86. };
  87. static inline void blk_mq_set_alloc_data(struct blk_mq_alloc_data *data,
  88. struct request_queue *q, gfp_t gfp, bool reserved,
  89. struct blk_mq_ctx *ctx,
  90. struct blk_mq_hw_ctx *hctx)
  91. {
  92. data->q = q;
  93. data->gfp = gfp;
  94. data->reserved = reserved;
  95. data->ctx = ctx;
  96. data->hctx = hctx;
  97. }
  98. static inline bool blk_mq_hw_queue_mapped(struct blk_mq_hw_ctx *hctx)
  99. {
  100. return hctx->nr_ctx && hctx->tags;
  101. }
  102. #endif