[PATCH 5/6] nvme-fabrics: Print network address if address resolution fails
From: Bart Van Assche <hidden>
Date: 2016-10-19 17:02:51
On Wed, 2016-10-19@12:39 +0200, Christoph Hellwig wrote:
On Tue, Oct 18, 2016@01:11:28PM -0700, Bart Van Assche wrote:quoted
Signed-off-by: Bart Van Assche <bart.vanassche at sandisk.com> --- ?drivers/nvme/host/rdma.c | 6 ++++-- ?1 file changed, 4 insertions(+), 2 deletions(-)diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 5a83881..9612ea0 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c@@ -568,14 +568,16 @@ static int nvme_rdma_init_queue(structnvme_rdma_ctrl *ctrl, ? NVME_RDMA_CONNECT_TIMEOUT_MS); ? if (ret) { ? dev_info(ctrl->ctrl.device, - "rdma_resolve_addr failed (%d).\n", ret); + ?"rdma_resolve_addr(%pISpc) failed (%d).\n", + ?&ctrl->addr, ret); ? goto out_destroy_cm_id; ? } ? ? ret = nvme_rdma_wait_for_cm(queue); ? if (ret) { ? dev_info(ctrl->ctrl.device, - "rdma_resolve_addr wait failed (%d).\n", ret); + ?"rdma_resolve_addr(%pISpc) wait failed (%d).\n", + ?&ctrl->addr, ret);Can you skip the indentation change???Also once have the address how about: "Failed to resolve %pISpc (instant), error %d).\n" "Failed to resolve %pISpc (wait), error %d.\n"
Hello Christoph, Thanks for the review. I will update this patch as you proposed. Bart.