From: Andrew Morton <akpm@linux-foundation.org>
To: Prarit Bhargava <prarit@redhat.com>
Cc: linux-kernel@vger.kernel.org, stable@kernel.org,
tony.camuso@hp.com, david.altobelli@hp.com, dzickus@redhat.com
Subject: Re: [PATCH]: hpilo: fix pointer warning in ilo_ccb_setup [v2]
Date: Mon, 14 Jun 2010 12:25:17 -0700 [thread overview]
Message-ID: <20100614122517.775fc67c.akpm@linux-foundation.org> (raw)
In-Reply-To: <20100608151923.10554.57721.sendpatchset@prarit.bos.redhat.com>
On Tue, 8 Jun 2010 11:25:36 -0400
Prarit Bhargava <prarit@redhat.com> wrote:
> Fix i386 PAE compile warning:
>
> drivers/misc/hpilo.c: In function ___ilo_ccb_setup___:
> drivers/misc/hpilo.c:274: warning: cast to pointer from integer of different size
>
> dma_addr_t is 64 on i386 PAE which causes a size mismatch.
>
> Signed-off-by: Prarit Bhargava <prarit@redhat.com>
>
> diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c
> index 98ad012..557a8c2 100644
> --- a/drivers/misc/hpilo.c
> +++ b/drivers/misc/hpilo.c
> @@ -256,7 +256,8 @@ static void ilo_ccb_close(struct pci_dev *pdev, struct ccb_data *data)
>
> static int ilo_ccb_setup(struct ilo_hwinfo *hw, struct ccb_data *data, int slot)
> {
> - char *dma_va, *dma_pa;
> + char *dma_va;
> + dma_addr_t dma_pa;
> struct ccb *driver_ccb, *ilo_ccb;
>
> driver_ccb = &data->driver_ccb;
> @@ -272,12 +273,12 @@ static int ilo_ccb_setup(struct ilo_hwinfo *hw, struct ccb_data *data, int slot)
> return -ENOMEM;
>
> dma_va = (char *)data->dma_va;
> - dma_pa = (char *)data->dma_pa;
> + dma_pa = data->dma_pa;
>
> memset(dma_va, 0, data->dma_size);
>
> dma_va = (char *)roundup((unsigned long)dma_va, ILO_START_ALIGN);
> - dma_pa = (char *)roundup((unsigned long)dma_pa, ILO_START_ALIGN);
> + dma_pa = roundup(dma_pa, ILO_START_ALIGN);
Well. roundup() does division, and 64-bit divides can cause a linkage
error on i386. But the compiler will save us because ILO_START_ALIGN
is a power-of-2. But as we require that ILO_START_ALIGN be a
power-of-2, we may as well use round_up(), which doesn't use division.
> --- a/drivers/misc/hpilo.h
> +++ b/drivers/misc/hpilo.h
> @@ -79,21 +79,21 @@ struct ilo_hwinfo {
> struct ccb {
> union {
> char *send_fifobar;
> - u64 padding1;
> + u64 send_fifobar_pa;
> } ccb_u1;
> union {
> char *send_desc;
> - u64 padding2;
> + u64 send_desc_pa;
> } ccb_u2;
> u64 send_ctrl;
>
> union {
> char *recv_fifobar;
> - u64 padding3;
> + u64 recv_fifobar_pa;
> } ccb_u3;
> union {
> char *recv_desc;
> - u64 padding4;
> + u64 recv_desc_pa;
> } ccb_u4;
> u64 recv_ctrl;
So what's happening here. As send_fifobar_pa, send_desc_pa,
recv_fifobar_pa and recv_desc_pa are only ever written to, I assume
that we're writing a 64-bit value and then reading it back via the
32-bit value which shares the same storage.
Which means that this code doesn't have a hope of working on big-endian
machines?
next prev parent reply other threads:[~2010-06-14 19:25 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-08 15:25 Prarit Bhargava
2010-06-14 19:25 ` Andrew Morton [this message]
2010-06-14 21:16 ` Altobelli, David
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=20100614122517.775fc67c.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=david.altobelli@hp.com \
--cc=dzickus@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=prarit@redhat.com \
--cc=stable@kernel.org \
--cc=tony.camuso@hp.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome