From: Andrew Morton <akpm@linux-foundation.org>
To: David Howells <dhowells@redhat.com>
Cc: torvalds@linux-foundation.org, bunk@kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/6] Werror: Fix casting wrong size integer to pointer
Date: Thu, 29 May 2008 12:19:42 -0700 [thread overview]
Message-ID: <20080529121942.b6d768e7.akpm@linux-foundation.org> (raw)
In-Reply-To: <20080529181726.5396.79336.stgit@warthog.procyon.org.uk>
On Thu, 29 May 2008 19:17:26 +0100 David Howells <dhowells@redhat.com> wrote:
> --- a/drivers/message/i2o/i2o_config.c
> +++ b/drivers/message/i2o/i2o_config.c
> @@ -886,7 +886,7 @@ static int i2o_cfg_passthru(unsigned long arg)
> flag_count & 0x04000000 /*I2O_SGL_FLAGS_DIR */ ) {
> // TODO 64bit fix
> if (copy_from_user
> - (p, (void __user *)sg[i].addr_bus,
> + (p, (void __user *)(unsigned long)sg[i].addr_bus,
> sg_size)) {
> printk(KERN_DEBUG
> "%s: Could not copy SG buf %d FROM user\n",
> @@ -942,7 +942,7 @@ static int i2o_cfg_passthru(unsigned long arg)
> sg_size = sg[j].flag_count & 0xffffff;
> // TODO 64bit fix
> if (copy_to_user
> - ((void __user *)sg[j].addr_bus, sg_list[j],
> + ((void __user *)(unsigned long)sg[j].addr_bus, sg_list[j],
> sg_size)) {
> printk(KERN_WARNING
> "%s: Could not copy %p TO user %x\n",
yup, what Linus said. This one's been irritating me for years, and I
got close to tempting Markus into fixing it before he departed the
scene. But it remains, as a little "might be busted on 64 bit" reminder.
next prev parent reply other threads:[~2008-05-29 19:20 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-29 18:17 [PATCH 1/6] Werror: Fix casting wrong size integer to pointer David Howells
2008-05-29 18:17 ` [PATCH 2/6] Werror: Hide epca_setup() as it's unused David Howells
2008-05-29 18:35 ` Alan Cox
2008-05-29 18:17 ` [PATCH 3/6] Werror: Remove iiEllisCleanup() " David Howells
2008-05-29 18:28 ` Adrian Bunk
2008-05-29 19:07 ` David Howells
2008-05-29 18:35 ` Alan Cox
2008-05-29 18:17 ` [PATCH 4/6] Werror: Hide warnings on static module device tables David Howells
2008-05-29 19:24 ` Adrian Bunk
2008-05-29 19:41 ` David Howells
2008-05-29 19:50 ` Adrian Bunk
2008-05-29 18:17 ` [PATCH 5/6] Werror: Remove the packed attribute from PofTimStamp_tag in the hysdn driver David Howells
2008-05-29 19:24 ` Andrew Morton
2008-05-29 18:17 ` [PATCH 6/6] Werror: Provide a configuration option to enable -Werror David Howells
2008-05-29 18:30 ` Linus Torvalds
2008-05-29 18:29 ` [PATCH 1/6] Werror: Fix casting wrong size integer to pointer Linus Torvalds
2008-05-29 18:48 ` David Howells
2008-05-29 19:19 ` Andrew Morton [this message]
2008-05-29 19:25 ` David Howells
2008-05-29 20:08 ` Andrew Morton
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=20080529121942.b6d768e7.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=bunk@kernel.org \
--cc=dhowells@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/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.