nvmet: Fix error print message at nvmet_install_queue function

commit 0b87a2b795 upstream.

Place the arguments in the correct order.

Fixes: 1672ddb8d6 ("nvmet: Add install_queue callout")
Signed-off-by: Israel Rukshin <israelr@mellanox.com>
Reviewed-by: Max Gurtovoy <maxg@mellanox.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Israel Rukshin 2020-02-04 14:38:09 +02:00 committed by Greg Kroah-Hartman
parent 6a4fea54ab
commit 6243cb9e32
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static u16 nvmet_install_queue(struct nvmet_ctrl *ctrl, struct nvmet_req *req)
if (ret) {
pr_err("failed to install queue %d cntlid %d ret %x\n",
qid, ret, ctrl->cntlid);
qid, ctrl->cntlid, ret);
return ret;
}
}