File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -473,14 +473,14 @@ enum hctx_type {
473
473
474
474
/**
475
475
* struct blk_mq_tag_set - tag set that can be shared between request queues
476
+ * @ops: Pointers to functions that implement block driver behavior.
476
477
* @map: One or more ctx -> hctx mappings. One map exists for each
477
478
* hardware queue type (enum hctx_type) that the driver wishes
478
479
* to support. There are no restrictions on maps being of the
479
480
* same size, and it's perfectly legal to share maps between
480
481
* types.
481
482
* @nr_maps: Number of elements in the @map array. A number in the range
482
483
* [1, HCTX_MAX_TYPES].
483
- * @ops: Pointers to functions that implement block driver behavior.
484
484
* @nr_hw_queues: Number of hardware queues supported by the block driver that
485
485
* owns this data structure.
486
486
* @queue_depth: Number of tags per hardware queue, reserved tags included.
@@ -505,9 +505,9 @@ enum hctx_type {
505
505
* (BLK_MQ_F_BLOCKING).
506
506
*/
507
507
struct blk_mq_tag_set {
508
+ const struct blk_mq_ops * ops ;
508
509
struct blk_mq_queue_map map [HCTX_MAX_TYPES ];
509
510
unsigned int nr_maps ;
510
- const struct blk_mq_ops * ops ;
511
511
unsigned int nr_hw_queues ;
512
512
unsigned int queue_depth ;
513
513
unsigned int reserved_tags ;
You can’t perform that action at this time.
0 commit comments