[PATCH 2/3] arch/powerpc: use __page_aligned_bss

From: Jeremy Fitzhardinge
Date: Wed May 28 2008 - 12:05:39 EST


The patch "make page-aligned data and bss less fragile" introduces
__page_aligned_data and __page_aligned_bss to make sure that page
aligned things remain so, even if there are non-page-sized
page-aligned things.

This paragraph converts an instance of an explicit section attribute
to __page_aligned_data. It's purely decorative.

(It should be noted that powerpc already defines __page_aligned to
have the same meaning as __page_aligned_data in non-MODULE code. Also
this particular case looks like it could be __page_aligned_bss rather
than data, but I didn't want to change the meaning of the code.)

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
Cc: Paul Mackerras <paulus@xxxxxxxxx>
---
arch/powerpc/kernel/vdso.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

===================================================================
--- a/arch/powerpc/kernel/vdso.c
+++ b/arch/powerpc/kernel/vdso.c
@@ -14,6 +14,7 @@
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/smp.h>
+#include <linux/linkage.h>
#include <linux/stddef.h>
#include <linux/unistd.h>
#include <linux/slab.h>
@@ -74,7 +75,7 @@
static union {
struct vdso_data data;
u8 page[PAGE_SIZE];
-} vdso_data_store __attribute__((__section__(".data.page_aligned")));
+} vdso_data_store __page_aligned_data;
struct vdso_data *vdso_data = &vdso_data_store.data;

/* Format of the patch table */


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/