Commit 84115d6d authored by Baolin Wang's avatar Baolin Wang Committed by Christoph Hellwig

nvme: simplify nvme_req_qid()

Use the request's '->mq_hctx->queue_num' directly to simplify the
nvme_req_qid() function.
Signed-off-by: default avatarBaolin Wang <baolin.wang@linux.alibaba.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 03d99e5d
...@@ -178,7 +178,8 @@ static inline u16 nvme_req_qid(struct request *req) ...@@ -178,7 +178,8 @@ static inline u16 nvme_req_qid(struct request *req)
{ {
if (!req->q->queuedata) if (!req->q->queuedata)
return 0; return 0;
return blk_mq_unique_tag_to_hwq(blk_mq_unique_tag(req)) + 1;
return req->mq_hctx->queue_num + 1;
} }
/* The below value is the specific amount of delay needed before checking /* The below value is the specific amount of delay needed before checking
......
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