Commit 0b87a2b7 authored by Israel Rukshin's avatar Israel Rukshin Committed by Keith Busch
Browse files

nvmet: Fix error print message at nvmet_install_queue function



Place the arguments in the correct order.

Fixes: 1672ddb8 ("nvmet: Add install_queue callout")
Signed-off-by: default avatarIsrael Rukshin <israelr@mellanox.com>
Reviewed-by: default avatarMax Gurtovoy <maxg@mellanox.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarKeith Busch <kbusch@kernel.org>
parent cfa27356
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,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;
		}
	}