From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [patch 2.6.22-rc2-git] spidev compiler warning gone Date: Tue, 29 May 2007 15:59:11 -0700 Message-ID: <20070529155911.105c65b7.akpm@linux-foundation.org> References: <200705251035.10587.david-b@pacbell.net> <20070529150214.75204439.akpm@linux-foundation.org> <200705291539.04253.david-b@pacbell.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org To: David Brownell Return-path: In-Reply-To: <200705291539.04253.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: spi-devel-general-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org Errors-To: spi-devel-general-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org List-Id: linux-spi.vger.kernel.org On Tue, 29 May 2007 15:39:04 -0700 David Brownell wrote: > On Tuesday 29 May 2007, Andrew Morton wrote: > > On Fri, 25 May 2007 10:35:07 -0700 > > David Brownell wrote: > > > > > Get rid of annoying GCC warning on 32-bit platforms. The trick is to > > > add an extra cast using "ptrdiff_t" to convert the u64 to the correct > > > size integer, and only then casting it into a "void *" pointer. > > > > > > ... > > > - if (__copy_to_user((u8 __user *)u_tmp->rx_buf, buf, > > > + if (__copy_to_user((u8 __user *) > > > + (ptrdiff_t) u_tmp->rx_buf, buf, > > > ... > > > > This seems overly tricky. The way we normally squish that warning is > > via a (long) cast. > > Well, "ptrdiff_t" seems equivalent to "long" in common cases. > > Presumably C99 guarantees pointer-to-long conversions work in > both directions? It seemed there must necessarily be such a > guarantee for "ptrdiff_t", even if it weren't true for "long". > I didn't have a copy of a C spec to consult. ;) > Thing is, the kernel does a cast of an integer-type to a pointer-type in a *lot* of places. And the standard way in which we squish the warning is via a (long) cast. So it's a standard pattern and people understand it. Whereas the ptrdiff_t thing will make readers go "wtf?". Even if it deos happen to work. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/