Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S269968AbUIDAfa (ORCPT ); Fri, 3 Sep 2004 20:35:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S270003AbUIDAfa (ORCPT ); Fri, 3 Sep 2004 20:35:30 -0400 Received: from dragnfire.mtl.istop.com ([66.11.160.179]:20676 "EHLO dsl.commfireservices.com") by vger.kernel.org with ESMTP id S269968AbUIDAfU (ORCPT ); Fri, 3 Sep 2004 20:35:20 -0400 Date: Fri, 3 Sep 2004 20:39:47 -0400 (EDT) From: Zwane Mwaikambo To: Linux Kernel Cc: Linus Torvalds , Andrew Morton , Matt Mackall , Martin Bligh Subject: [PATCH][0/8] updated arch agnostic completely out of line locks Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2107 Lines: 48 In brief, updates from the previous patches are; - runtime tested on sparc64 (thanks Bill) - modified ARM profile_pc (not entirely sure about this one) - updated size comparison data from i386 as spotted by Linus ---------------------------------------------------------------------- This patch achieves out of line spinlocks by creating kernel/spinlock.c and using the _raw_* inline locking functions. Now, as much as this is supposed to be arch agnostic, there was still a fair amount of rummaging about in archs, mostly for the cases where the arch already has out of line locks and i wanted to avoid the extra call, saving that extra call also makes lock profiling easier. PPC32/64 was an example of such an arch and i have added the necessary profile_pc() function as an example. Size differences are with CONFIG_PREEMPT enabled since we wanted to determine how much could be saved by moving that lot out of line too. ppc64 = 259897 bytes: text data bss dec hex filename 5489808 1962724 709064 8161596 7c893c vmlinux-after 5749577 1962852 709064 8421493 808075 vmlinux-before sparc64 = 193368 bytes: text data bss dec hex filename 3472037 633712 308920 4414669 435ccd vmlinux-after 3665285 633832 308920 4608037 465025 vmlinux-before i386 = 416075 bytes text data bss dec hex filename 5808371 867442 326864 7002677 6ada35 vmlinux-after 6221254 870634 326864 7418752 713380 vmlinux-before x86-64 = 282446 bytes text data bss dec hex filename 4598025 1450644 523632 6572301 64490d vmlinux-after 4881679 1449436 523632 6854747 68985b vmlinux-before It has been compile tested (UP, SMP, PREEMPT) on i386, x86-64, sparc, sparc64, ppc64, ppc32 and runtime tested on i386, x86-64 and sparc64. I still have to get benchmarks done (most probably i386). Thanks, Zwane - 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/