On Thu, Apr 30, 2009 at 03:54:08PM -0400, Tim Abbott wrote: > This patch is preparation for replacing most uses of > ".bss.page_aligned" and ".data.page_aligned" in the kernel with > macros, so that the section name can later be changed without having > to touch a lot of the kernel. > > The long-term goal here is to be able to change the kernel's magic > section names to those that are compatible with -ffunction-sections > -fdata-sections. This requires renaming all magic sections with names > of the form ".data.foo". > > Signed-off-by: Tim Abbott <tabbott@xxxxxxx> > Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> > Acked-by: David Howells <dhowells@xxxxxxxxxx> > --- > include/asm-generic/vmlinux.lds.h | 8 ++++++++ > include/linux/linkage.h | 9 +++++++++ > 2 files changed, 17 insertions(+), 0 deletions(-) > > diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h > index 89853bc..3d88c87 100644 > --- a/include/asm-generic/vmlinux.lds.h > +++ b/include/asm-generic/vmlinux.lds.h > @@ -116,6 +116,14 @@ > FTRACE_EVENTS() \ > TRACE_SYSCALLS() > > +#define PAGE_ALIGNED_DATA \ > + . = ALIGN(PAGE_SIZE); \ > + *(.data.page_aligned) > + > +#define PAGE_ALIGNED_BSS \ > + . = ALIGN(PAGE_SIZE); \ > + *(.bss.page_aligned) > + > #define RO_DATA(align) \ > . = ALIGN((align)); \ > .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \ > diff --git a/include/linux/linkage.h b/include/linux/linkage.h > index fee9e59..af051fc 100644 > --- a/include/linux/linkage.h > +++ b/include/linux/linkage.h > @@ -22,6 +22,15 @@ > #define __page_aligned_bss __section(.bss.page_aligned) __aligned(PAGE_SIZE) > > /* > + * For assembly routines. > + * > + * Note when using these that you must specify the appropriate > + * alignment directives yourself > + */ > +#define __PAGE_ALIGNED_DATA .section ".data.page_aligned", "aw", @progbits > +#define __PAGE_ALIGNED_BSS .section ".bss.page_aligned", "aw", @nobits The above will work on most architectures but fails (silently?) on arm. arm uses %{progbits,nobits} where all other uses @{nobits,progbits}. I know we do not use page_aligned in arm assembler code for now, but if we do then it should work. It is my understanding that the linker will automatically assume nobits for section names starting with .bss and likewise progbits for section names starting with .data - so we can leave them out? Sam