[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <m2fwigw4dx.fsf@firstfloor.org>
Date: Wed, 26 Oct 2011 01:20:26 -0700
From: Andi Kleen <andi@...stfloor.org>
To: Eial Czerwacki <eial@...lemp.com>
Cc: linux-kernel@...r.kernel.org,
"Shai Fultheim \(Shai\@ScaleMP.com\)" <Shai@...leMP.com>
Subject: Re: [PATCH] APICID: Avoid false sharing on the read mostly x86_cpu_to_apicid
Eial Czerwacki <eial@...lemp.com> writes:
> ===================================================================
> --- a/arch/x86/include/asm/smp.h 2010-06-01 09:56:03.000000000 -0700
> +++ b/arch/x86/include/asm/smp.h 2010-06-02 15:59:21.000000000 -0700
> @@ -36,7 +36,8 @@ static inline struct cpumask *cpu_core_m
> return per_cpu(cpu_core_map, cpu);
> }
>
> -DECLARE_EARLY_PER_CPU(u16, x86_cpu_to_apicid);
> +extern u16 x86_cpu_to_apicid[NR_CPUS];
That's a big waste of memory. On a CONFIG_MAX_SMP kernel compiled for
4096 CPUs you're wasting 8k now on smaller systems. The per cpu
data only allocates what is needed.
NR_CPUS is usually a bad idea and it
Perhaps need a __read_mostly cache line padded per CPU section instead
for cases like this.
-Andi
--
ak@...ux.intel.com -- Speaking for myself only
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists