From: David Mosberger <davidm@napali.hpl.hp.com>
To: torvalds@osdl.org, "Michel Dänzer" <michel@daenzer.net>
Cc: davidm@hpl.hp.com, linux-kernel@vger.kernel.org,
linux-ia64@vger.kernel.org
Subject: Re: radeon warning on 64-bit platforms
Date: Tue, 17 Feb 2004 23:28:28 +0000 [thread overview]
Message-ID: <16434.41884.249541.156083@napali.hpl.hp.com> (raw)
In-Reply-To: <1077058106.2713.88.camel@thor.asgaard.local>
Linus and Michel,
Here is a proposed patch for fixing the compile-warning that shows up
when compiling radeon_state.c on a 64-bit platform (Itanium, in my
case). According to Michel, RADEON_PARAM_SAREA_HANDLE is used only on
embedded platforms and since it is not possible to fix the problem
without breaking backwards-compatibility for those platforms, the
interim fix is to simply desupport this particular ioctl() on 64-bit
platforms (i.e., make it fail with EINVAL).
If there are no objections, please apply.
--david
=== drivers/char/drm/radeon_state.c 1.23 vs edited ==--- 1.23/drivers/char/drm/radeon_state.c Tue Feb 3 21:29:26 2004
+++ edited/drivers/char/drm/radeon_state.c Tue Feb 17 15:23:01 2004
@@ -2186,9 +2186,24 @@
value = dev_priv->ring_rptr_offset;
break;
case RADEON_PARAM_SAREA_HANDLE:
- /* The lock is the first dword in the sarea. */
- value = (int)dev->lock.hw_lock;
- break;
+ /*
+ * This ioctl() doesn't work on 64-bit platforms because hw_lock is a
+ * pointer which can't fit into an int-sized variable. According to
+ * Michael Dänzer, the ioctl() is only used on embedded platforms, so not
+ * supporting it shouldn't be a problem. If the same functionality is
+ * needed on 64-bit platforms, a new ioctl() would have to be added, so
+ * backwards-compatibility for the embedded platforms can be maintained.
+ * --davidm 4-Feb-2004.
+ */
+ if (sizeof (dev->lock.hw_lock) <= sizeof (int))
+ /*
+ * The lock is the first dword in the sarea. Cast to "long" so it
+ * compiles without warning on 64-bit platforms.
+ */
+ value = (long)dev->lock.hw_lock;
+ else
+ return DRM_ERR(EINVAL);
+ break;
case RADEON_PARAM_GART_TEX_HANDLE:
value = dev_priv->gart_textures_offset;
break;
next parent reply other threads:[~2004-02-17 23:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <16434.35199.597235.894615@napali.hpl.hp.com>
[not found] ` <1077054385.2714.72.camel@thor.asgaard.local>
[not found] ` <16434.36137.623311.751484@napali.hpl.hp.com>
[not found] ` <1077055209.2712.80.camel@thor.asgaard.local>
[not found] ` <16434.37025.840577.826949@napali.hpl.hp.com>
[not found] ` <1077058106.2713.88.camel@thor.asgaard.local>
2004-02-17 23:28 ` David Mosberger [this message]
2004-02-17 23:44 ` radeon warning on 64-bit platforms Michel Dänzer
2004-02-17 23:48 ` Anton Blanchard
2004-02-18 0:51 ` David Mosberger
2004-02-18 1:54 ` Matthew Wilcox
2004-02-18 1:59 ` David Mosberger
2004-02-18 2:28 ` Matthew Wilcox
2004-02-18 4:48 ` David Mosberger
2004-02-19 22:30 ` Valdis.Kletnieks
2004-02-20 15:51 ` Andreas Schwab
2004-02-20 22:14 ` Valdis.Kletnieks
2004-02-17 23:53 ` Linus Torvalds
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=16434.41884.249541.156083@napali.hpl.hp.com \
--to=davidm@napali.hpl.hp.com \
--cc=davidm@hpl.hp.com \
--cc=linux-ia64@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michel@daenzer.net \
--cc=torvalds@osdl.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox