From: Sagi Grimberg Date: Wed, 11 Oct 2017 12:29:07 +0000 (+0300) Subject: nvme-rdma: fix wrong logging message X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=d8bfceebc41762f7dde960996a24180f9a67cd51;p=openwrt%2Fstaging%2Fblogic.git nvme-rdma: fix wrong logging message Not necessarily address resolution failed. Signed-off-by: Sagi Grimberg Reviewed-by: Max Gurtovoy Reviewed-by: Johannes Thumshirn Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 93c8578a2ddc..02b3388af308 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -544,7 +544,7 @@ static int nvme_rdma_alloc_queue(struct nvme_rdma_ctrl *ctrl, ret = nvme_rdma_wait_for_cm(queue); if (ret) { dev_info(ctrl->ctrl.device, - "rdma_resolve_addr wait failed (%d).\n", ret); + "rdma connection establishment failed (%d)\n", ret); goto out_destroy_cm_id; }