Home
last modified time | relevance | path

Searched hist:a7bf0bd5e6af7fe69342dabf2a3b721f0163469a (Results 1 – 2 of 2) sorted by relevance

/linux/include/linux/
H A Dlinkage.hdiff a7bf0bd5e6af7fe69342dabf2a3b721f0163469a Wed May 28 16:02:14 CEST 2008 Jeremy Fitzhardinge <jeremy@goop.org> build: add __page_aligned_data and __page_aligned_bss

Making a variable page-aligned by using
__attribute__((section(".data.page_aligned"))) is fragile because if
sizeof(variable) is not also a multiple of page size, it leaves
variables in the remainder of the section unaligned.

This patch introduces two new qualifiers, __page_aligned_data and
__page_aligned_bss to set the section *and* the alignment of
variables. This makes page-aligned variables more robust because the
linker will make sure they're aligned properly. Unfortunately it
requires *all* page-aligned data to use these macros...

Signed-off-by: Ingo Molnar <mingo@elte.hu>
/linux/arch/x86/mm/
H A Dioremap.cdiff a7bf0bd5e6af7fe69342dabf2a3b721f0163469a Wed May 28 16:02:14 CEST 2008 Jeremy Fitzhardinge <jeremy@goop.org> build: add __page_aligned_data and __page_aligned_bss

Making a variable page-aligned by using
__attribute__((section(".data.page_aligned"))) is fragile because if
sizeof(variable) is not also a multiple of page size, it leaves
variables in the remainder of the section unaligned.

This patch introduces two new qualifiers, __page_aligned_data and
__page_aligned_bss to set the section *and* the alignment of
variables. This makes page-aligned variables more robust because the
linker will make sure they're aligned properly. Unfortunately it
requires *all* page-aligned data to use these macros...

Signed-off-by: Ingo Molnar <mingo@elte.hu>