Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sat, 21 Apr 2001 11:08:19 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sat, 21 Apr 2001 11:08:09 -0400 Received: from penguin.e-mind.com ([195.223.140.120]:21858 "EHLO penguin.e-mind.com") by vger.kernel.org with ESMTP id ; Sat, 21 Apr 2001 11:07:52 -0400 Date: Sat, 21 Apr 2001 17:07:35 +0200 From: Andrea Arcangeli To: Russell King Cc: Linus Torvalds , "D . W . Howells" , dhowells@redhat.com, linux-kernel@vger.kernel.org Subject: Re: x86 rwsem in 2.4.4pre[234] are still buggy [was Re: rwsem benchmarks [Re: generic rwsem [Re: Alpha "process table hang"]]] Message-ID: <20010421170735.F17757@athlon.random> In-Reply-To: <20010420191710.A32159@athlon.random> <20010421160327.A17757@athlon.random> <20010421153742.B7576@flint.arm.linux.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010421153742.B7576@flint.arm.linux.org.uk>; from rmk@arm.linux.org.uk on Sat, Apr 21, 2001 at 03:37:42PM +0100 X-GnuPG-Key-URL: http://e-mind.com/~andrea/aa.gnupg.asc X-PGP-Key-URL: http://e-mind.com/~andrea/aa.asc Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Apr 21, 2001 at 03:37:42PM +0100, Russell King wrote: > On Sat, Apr 21, 2001 at 04:03:27PM +0200, Andrea Arcangeli wrote: > > On Fri, Apr 20, 2001 at 04:45:32PM -0700, Linus Torvalds wrote: > > > I would suggest the following: > > > > > > - the generic semaphores should use the lock that already exists in the > > > wait-queue as the semaphore spinlock. > > > > Ok, that is what my generic code does. > > rwsem-spinlock.h requires linux/types.h to be included (you're using > __u16 at towards the bottom): As you are quoting me on "that is what my generic code does", note that my code is only here: ftp://ftp.*.kernel.org/pub/linux/kernel/people/andrea/kernels/v2.4/2.4.4pre4aa1/00_rwsem-generic-6 and no one single line of my rwsem patches is ever been included in any of Linus's or Alan's kernels. > gcc -D__KERNEL__ -I/usr/src2/v2.4/linux-rpc/include -Wall -Wstrict-prototypes > -O2 -fno-strict-aliasing -pipe -mapcs-32 -march=armv3m -mtune=strongarm110 > -mshort-load-bytes -msoft-float -c -o ieee1284.o ieee1284.c > In file included from /usr/src2/v2.4/linux-rpc/include/linux/rwsem.h:56, > from /usr/src2/v2.4/linux-rpc/include/asm/semaphore.h:10, > from /usr/src2/v2.4/linux-rpc/include/linux/parport.h:101, > from ieee1284.c:19: > /usr/src2/v2.4/linux-rpc/include/linux/rwsem-spinlock.h:154: parse error before `rwsem_cmpxchgw' > /usr/src2/v2.4/linux-rpc/include/linux/rwsem-spinlock.h:154: parse error before `__u16' > /usr/src2/v2.4/linux-rpc/include/linux/rwsem-spinlock.h:155: warning: return-type defaults to `int' > /usr/src2/v2.4/linux-rpc/include/linux/rwsem-spinlock.h:155: warning: function declaration isn't a prototype > > Here is a patch that fixes this oversight against 2.4.4-pre5: > > --- orig/include/linux/rwsem-spinlock.h Sat Apr 21 15:32:57 2001 > +++ linux/include/linux/rwsem-spinlock.h Sat Apr 21 15:28:45 2001 > @@ -11,6 +11,7 @@ > #endif > > #include > +#include > > #ifdef __KERNEL__ > > > > -- > Russell King (rmk@arm.linux.org.uk) The developer of ARM Linux > http://www.arm.linux.org.uk/personal/aboutme.html > Andrea - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/