Skip to content

Commit

Permalink
nvme-loop: set sqsize to 0-based value, per spec
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
  • Loading branch information
Jay Freyensee authored and Sagi Grimberg committed Aug 18, 2016
1 parent c5af865 commit eadb7cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/nvme/target/loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ static int nvme_loop_create_io_queues(struct nvme_loop_ctrl *ctrl)

memset(&ctrl->tag_set, 0, sizeof(ctrl->tag_set));
ctrl->tag_set.ops = &nvme_loop_mq_ops;
ctrl->tag_set.queue_depth = ctrl->ctrl.sqsize;
ctrl->tag_set.queue_depth = ctrl->ctrl.opts->queue_size;
ctrl->tag_set.reserved_tags = 1; /* fabric connect */
ctrl->tag_set.numa_node = NUMA_NO_NODE;
ctrl->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
Expand Down Expand Up @@ -620,7 +620,7 @@ static struct nvme_ctrl *nvme_loop_create_ctrl(struct device *dev,

ret = -ENOMEM;

ctrl->ctrl.sqsize = opts->queue_size;
ctrl->ctrl.sqsize = opts->queue_size - 1;
ctrl->ctrl.kato = opts->kato;

ctrl->queues = kcalloc(opts->nr_io_queues + 1, sizeof(*ctrl->queues),
Expand Down

0 comments on commit eadb7cf

Please sign in to comment.