From: "Steve Wise" <swise@opengridcomputing.com>
To: 'Rasmus Villemoes' <linux@rasmusvillemoes.dk>,
'Steve Wise' <swise@chelsio.com>,
'Roland Dreier' <roland@kernel.org>,
'Sean Hefty' <sean.hefty@intel.com>,
'Hal Rosenstock' <hal.rosenstock@gmail.com>
Cc: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: RE: [PATCH 1/2] infiniband: cxgb4: Fix some format strings
Date: Thu, 5 Feb 2015 17:44:03 -0600 [thread overview]
Message-ID: <008401d0419d$9fb9a8c0$df2cfa40$@opengridcomputing.com> (raw)
In-Reply-To: <1423179179-16847-1-git-send-email-linux@rasmusvillemoes.dk>
Acked-by: Steve Wise <swise@opengridcomputing.com>
> -----Original Message-----
> From: linux-rdma-owner@vger.kernel.org [mailto:linux-rdma-owner@vger.kernel.org] On Behalf Of Rasmus Villemoes
> Sent: Thursday, February 05, 2015 5:33 PM
> To: Steve Wise; Roland Dreier; Sean Hefty; Hal Rosenstock
> Cc: Rasmus Villemoes; linux-rdma@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH 1/2] infiniband: cxgb4: Fix some format strings
>
> PDBG prepends MOD (which expands to "iw_cxgb4" ":") to the format
> string. So the KERN_INFO just ends up in the middle where it just
> garbles the output. At the same place, there's obviously no reason to
> add MOD explicitly.
>
> The two other are straight-forward fixes of KERN_ERR KERN_ERR, where
> the second will end up as garbage in the output.
>
> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> ---
> drivers/infiniband/hw/cxgb4/device.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c
> index eb5df4e62703..536356a8c58c 100644
> --- a/drivers/infiniband/hw/cxgb4/device.c
> +++ b/drivers/infiniband/hw/cxgb4/device.c
> @@ -979,7 +979,7 @@ static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
> }
> }
>
> - PDBG(KERN_INFO MOD "ocq memory: "
> + PDBG("ocq memory: "
> "hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
> devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
> devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
> @@ -1368,7 +1368,7 @@ static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
> t4_sq_host_wq_pidx(&qp->wq),
> t4_sq_wq_size(&qp->wq));
> if (ret) {
> - pr_err(KERN_ERR MOD "%s: Fatal error - "
> + pr_err(MOD "%s: Fatal error - "
> "DB overflow recovery failed - "
> "error syncing SQ qid %u\n",
> pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
> @@ -1384,7 +1384,7 @@ static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
> t4_rq_wq_size(&qp->wq));
>
> if (ret) {
> - pr_err(KERN_ERR MOD "%s: Fatal error - "
> + pr_err(MOD "%s: Fatal error - "
> "DB overflow recovery failed - "
> "error syncing RQ qid %u\n",
> pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
> --
> 2.1.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: "Steve Wise" <swise@opengridcomputing.com>
To: "'Rasmus Villemoes'" <linux@rasmusvillemoes.dk>,
"'Steve Wise'" <swise@chelsio.com>,
"'Roland Dreier'" <roland@kernel.org>,
"'Sean Hefty'" <sean.hefty@intel.com>,
"'Hal Rosenstock'" <hal.rosenstock@gmail.com>
Cc: <linux-rdma@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH 1/2] infiniband: cxgb4: Fix some format strings
Date: Thu, 5 Feb 2015 17:44:03 -0600 [thread overview]
Message-ID: <008401d0419d$9fb9a8c0$df2cfa40$@opengridcomputing.com> (raw)
In-Reply-To: <1423179179-16847-1-git-send-email-linux@rasmusvillemoes.dk>
Acked-by: Steve Wise <swise@opengridcomputing.com>
> -----Original Message-----
> From: linux-rdma-owner@vger.kernel.org [mailto:linux-rdma-owner@vger.kernel.org] On Behalf Of Rasmus Villemoes
> Sent: Thursday, February 05, 2015 5:33 PM
> To: Steve Wise; Roland Dreier; Sean Hefty; Hal Rosenstock
> Cc: Rasmus Villemoes; linux-rdma@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH 1/2] infiniband: cxgb4: Fix some format strings
>
> PDBG prepends MOD (which expands to "iw_cxgb4" ":") to the format
> string. So the KERN_INFO just ends up in the middle where it just
> garbles the output. At the same place, there's obviously no reason to
> add MOD explicitly.
>
> The two other are straight-forward fixes of KERN_ERR KERN_ERR, where
> the second will end up as garbage in the output.
>
> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> ---
> drivers/infiniband/hw/cxgb4/device.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c
> index eb5df4e62703..536356a8c58c 100644
> --- a/drivers/infiniband/hw/cxgb4/device.c
> +++ b/drivers/infiniband/hw/cxgb4/device.c
> @@ -979,7 +979,7 @@ static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
> }
> }
>
> - PDBG(KERN_INFO MOD "ocq memory: "
> + PDBG("ocq memory: "
> "hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
> devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
> devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
> @@ -1368,7 +1368,7 @@ static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
> t4_sq_host_wq_pidx(&qp->wq),
> t4_sq_wq_size(&qp->wq));
> if (ret) {
> - pr_err(KERN_ERR MOD "%s: Fatal error - "
> + pr_err(MOD "%s: Fatal error - "
> "DB overflow recovery failed - "
> "error syncing SQ qid %u\n",
> pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
> @@ -1384,7 +1384,7 @@ static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
> t4_rq_wq_size(&qp->wq));
>
> if (ret) {
> - pr_err(KERN_ERR MOD "%s: Fatal error - "
> + pr_err(MOD "%s: Fatal error - "
> "DB overflow recovery failed - "
> "error syncing RQ qid %u\n",
> pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
> --
> 2.1.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2015-02-05 23:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-05 23:32 [PATCH 1/2] infiniband: cxgb4: Fix some format strings Rasmus Villemoes
2015-02-05 23:32 ` Rasmus Villemoes
2015-02-05 23:32 ` [PATCH 2/2] infiniband: Fix duplicate KERN_* level Rasmus Villemoes
2015-02-05 23:44 ` Steve Wise [this message]
2015-02-05 23:44 ` [PATCH 1/2] infiniband: cxgb4: Fix some format strings Steve Wise
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='008401d0419d$9fb9a8c0$df2cfa40$@opengridcomputing.com' \
--to=swise@opengridcomputing.com \
--cc=hal.rosenstock@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=roland@kernel.org \
--cc=sean.hefty@intel.com \
--cc=swise@chelsio.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.