Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757555AbZALVmz (ORCPT ); Mon, 12 Jan 2009 16:42:55 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752799AbZALVmd (ORCPT ); Mon, 12 Jan 2009 16:42:33 -0500 Received: from one.firstfloor.org ([213.235.205.2]:44104 "EHLO one.firstfloor.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752634AbZALVmd (ORCPT ); Mon, 12 Jan 2009 16:42:33 -0500 Date: Mon, 12 Jan 2009 22:57:02 +0100 From: Andi Kleen To: Frederik Deweerdt Cc: mingo@elte.hu, andi@firstfloor.org, tglx@linutronix.de, hpa@zytor.com, linux-kernel@vger.kernel.org Subject: Re: [patch] tlb flush_data: replace per_cpu with an array Message-ID: <20090112215701.GH23848@one.firstfloor.org> References: <20090112213539.GA10720@gambetta> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090112213539.GA10720@gambetta> User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1159 Lines: 28 On Mon, Jan 12, 2009 at 10:35:42PM +0100, Frederik Deweerdt wrote: > Hi, > > On x86_64 flush tlb data is stored in per_cpu variables. This is > unnecessary because only the first NUM_INVALIDATE_TLB_VECTORS entries > are accessed. > This patch aims at making the code less confusing (there's nothing > really "per_cpu") by using a plain array. It also would save some memory > on most distros out there (Ubuntu x86_64 has NR_CPUS=64 by default). Nope it doesn't save memory on most systems because per cpu is only allocated based on the CPUs that are actually there. And if you have more than 8 cores you can likely afford a few bytes per CPU. You would need to cache line pad each entry then, otherwise you risk false sharing. That would make the array 1K on 128 bytes cache line system. This means on small systems this would actually waste much more memory. per cpu avoids that problem completely. -Andi -- 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/