Commit a68aafa5 authored by Jens Axboe's avatar Jens Axboe

blk-mq: correct a few wrong/bad comments

Just grammar or spelling errors, nothing major.
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 16f408dc
...@@ -1580,7 +1580,7 @@ static int blk_mq_init_hw_queues(struct request_queue *q, ...@@ -1580,7 +1580,7 @@ static int blk_mq_init_hw_queues(struct request_queue *q,
hctx->tags = set->tags[i]; hctx->tags = set->tags[i];
/* /*
* Allocate space for all possible cpus to avoid allocation in * Allocate space for all possible cpus to avoid allocation at
* runtime * runtime
*/ */
hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *), hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
...@@ -1668,8 +1668,8 @@ static void blk_mq_map_swqueue(struct request_queue *q) ...@@ -1668,8 +1668,8 @@ static void blk_mq_map_swqueue(struct request_queue *q)
queue_for_each_hw_ctx(q, hctx, i) { queue_for_each_hw_ctx(q, hctx, i) {
/* /*
* If not software queues are mapped to this hardware queue, * If no software queues are mapped to this hardware queue,
* disable it and free the request entries * disable it and free the request entries.
*/ */
if (!hctx->nr_ctx) { if (!hctx->nr_ctx) {
struct blk_mq_tag_set *set = q->tag_set; struct blk_mq_tag_set *set = q->tag_set;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment