From: Gavin Shan <gwshan@linux.vnet.ibm.com>
To: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Cc: linuxppc-dev@lists.ozlabs.org, Russell Currey <ruscur@russell.cc>,
Gavin Shan <gwshan@linux.vnet.ibm.com>
Subject: Re: [PATCH] powerpc/eeh: fix pr_debug()s in eeh_cache.c
Date: Fri, 24 Jun 2016 16:21:15 +1000 [thread overview]
Message-ID: <20160624062115.GA8107@gwshan> (raw)
In-Reply-To: <1466747662-9868-1-git-send-email-andrew.donnellan@au1.ibm.com>
On Fri, Jun 24, 2016 at 03:54:22PM +1000, Andrew Donnellan wrote:
>eeh_cache.c doesn't build cleanly with -DDEBUG when
>CONFIG_PHYS_ADDR_T_64BIT is set, as a couple of pr_debug()s use "%lx" for
>resource_size_t parameters.
>
>Use "%pap" instead, as it's the correct format specifier for types deriving
>from phys_addr_t.
>
>Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
>Cc: Russell Currey <ruscur@russell.cc>
>Cc: Gavin Shan <gwshan@linux.vnet.ibm.com>
Reviewed-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
>---
> arch/powerpc/kernel/eeh_cache.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
>diff --git a/arch/powerpc/kernel/eeh_cache.c b/arch/powerpc/kernel/eeh_cache.c
>index ddbcfab..ceb81a4 100644
>--- a/arch/powerpc/kernel/eeh_cache.c
>+++ b/arch/powerpc/kernel/eeh_cache.c
>@@ -114,9 +114,9 @@ static void eeh_addr_cache_print(struct pci_io_addr_cache *cache)
> while (n) {
> struct pci_io_addr_range *piar;
> piar = rb_entry(n, struct pci_io_addr_range, rb_node);
>- pr_debug("PCI: %s addr range %d [%lx-%lx]: %s\n",
>+ pr_debug("PCI: %s addr range %d [%pap-%pap]: %s\n",
> (piar->flags & IORESOURCE_IO) ? "i/o" : "mem", cnt,
>- piar->addr_lo, piar->addr_hi, pci_name(piar->pcidev));
>+ &piar->addr_lo, &piar->addr_hi, pci_name(piar->pcidev));
> cnt++;
> n = rb_next(n);
> }
>@@ -159,8 +159,8 @@ eeh_addr_cache_insert(struct pci_dev *dev, resource_size_t alo,
> piar->flags = flags;
>
> #ifdef DEBUG
>- pr_debug("PIAR: insert range=[%lx:%lx] dev=%s\n",
>- alo, ahi, pci_name(dev));
>+ pr_debug("PIAR: insert range=[%pap:%pap] dev=%s\n",
>+ &alo, &ahi, pci_name(dev));
> #endif
>
> rb_link_node(&piar->rb_node, parent, p);
>--
>Andrew Donnellan OzLabs, ADL Canberra
>andrew.donnellan@au1.ibm.com IBM Australia Limited
>
next prev parent reply other threads:[~2016-06-24 6:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-24 5:54 [PATCH] powerpc/eeh: fix pr_debug()s in eeh_cache.c Andrew Donnellan
2016-06-24 6:21 ` Gavin Shan [this message]
2016-07-11 10:19 ` Michael Ellerman
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=20160624062115.GA8107@gwshan \
--to=gwshan@linux.vnet.ibm.com \
--cc=andrew.donnellan@au1.ibm.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=ruscur@russell.cc \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).