[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <482A761F.7020609@cosmosbay.com>
Date: Wed, 14 May 2008 07:18:23 +0200
From: Eric Dumazet <dada1@...mosbay.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Gianni Tedesco <gxt@...nott.ac.uk>, arges@...ux.vnet.ibm.com,
Maynard Johnson <maynardj@...ibm.com>,
Vegard Nossum <vegard.nossum@...il.com>,
linux-kernel@...r.kernel.org, Fenghua Yu <fenghua.yu@...el.com>,
Mike Travis <travis@....com>
Subject: [PATCH] per_cpu: fix DEFINE_PER_CPU_SHARED_ALIGNED for modules
Andrew,
A typo was included in the patch I sent yesterday, since I was testing :
#ifdef CONFIG_MODULES
while the intention was to test
#ifdef MODULE
So that all SHARED_ALIGNED vmlinux percpu variables still are in the
special section.
The fix is only needed when compiling modules.
Thank you
[PATCH] per_cpu: fix DEFINE_PER_CPU_SHARED_ALIGNED for modules
Current module loader lookups ".data.percpu" ELF section to perform
per_cpu relocation. But DEFINE_PER_CPU_SHARED_ALIGNED()
uses another section (".data.percpu.shared_aligned"), currently only
handled in vmlinux.lds, not by module loader.
To correct this problem, instead of adding logic into module loader,
or using at build time a module.lds file for all arches to group
".data.percpu.shared_aligned" into ".data.percpu",
just use ".data.percpu" for modules.
Alignment requirements are correctly handled by ld and module loader.
Signed-off-by: Eric Dumazet <dada1@...mosbay.com>
---
include/linux/percpu.h | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletion(-)
View attachment "percpu_shared_aligned.patch" of type "text/plain" (689 bytes)
Powered by blists - more mailing lists