From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753359AbaA3Pnb (ORCPT ); Thu, 30 Jan 2014 10:43:31 -0500 Received: from g4t0016.houston.hp.com ([15.201.24.19]:27746 "EHLO g4t0016.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752848AbaA3Pna (ORCPT ); Thu, 30 Jan 2014 10:43:30 -0500 Message-ID: <52EA7309.7070605@hp.com> Date: Thu, 30 Jan 2014 10:43:05 -0500 From: Waiman Long User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130109 Thunderbird/10.0.12 MIME-Version: 1.0 To: Peter Zijlstra CC: Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Arnd Bergmann , linux-arch@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, Steven Rostedt , Andrew Morton , Michel Lespinasse , Andi Kleen , Rik van Riel , "Paul E. McKenney" , Linus Torvalds , Raghavendra K T , George Spelvin , Tim Chen , "" , Scott J Norton Subject: Re: [PATCH v11 0/4] Introducing a queue read/write lock implementation References: <1390537731-45996-1-git-send-email-Waiman.Long@hp.com> <20140130130453.GB2936@laptop.programming.kicks-ass.net> <20140130151715.GA5126@laptop.programming.kicks-ass.net> In-Reply-To: <20140130151715.GA5126@laptop.programming.kicks-ass.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/30/2014 10:17 AM, Peter Zijlstra wrote: > On Thu, Jan 30, 2014 at 02:04:53PM +0100, Peter Zijlstra wrote: >> So I took out that ugly union and rewrote the code to be mostly >> atomic_*(), gcc generates acceptable code and its smaller too. >> >> 824 0 0 824 338 defconfig-build/kernel/locking/qrwlock.o >> 776 0 0 776 308 defconfig-build/kernel/locking/qrwlock.o >> >> I don't think I wrecked it, but I've not actually tried it yet. > I did wreck it.. :-) > > The below is still small and actually works. > > --- > arch/x86/Kconfig | 1 > arch/x86/include/asm/spinlock.h | 2 > arch/x86/include/asm/spinlock_types.h | 4 > b/arch/x86/include/asm/qrwlock.h | 18 +++ > b/include/asm-generic/qrwlock.h | 174 ++++++++++++++++++++++++++++++++++ > b/include/asm-generic/qrwlock_types.h | 17 +++ > b/kernel/locking/qrwlock.c | 157 ++++++++++++++++++++++++++++++ > kernel/Kconfig.locks | 7 + > kernel/locking/Makefile | 1 > 9 files changed, 381 insertions(+) > > --- a/arch/x86/Kconfig > +++ b/arch/x86/Kconfig > OK, I see what you are trying to do. I can apply the change to my patch & send out v12. So I presume that you are now OK with it. Can I add your sign-off line? -Longman