From: Roland McGrath Date: Wed, 17 Oct 2007 16:04:40 +0000 (+0200) Subject: x86: vdso put vars in rodata X-Git-Tag: v2.6.24-rc1~476^2~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=06f99ac87ef3f1f706cd1eb794b16dfbfe60ee29;p=platform%2Fkernel%2Flinux-3.10.git x86: vdso put vars in rodata This adds a const to the definitions vvar.c makes, so that the vdso_* variables go into .rodata instead of .data. This is essentially a cosmetic change, just giving the section headers in the vDSO file more pleasing flags. These variables are read-only from the perspective of the vDSO itself and user mode, even though the contents of the DSO image were adjusted at boot. Signed-off-by: Roland McGrath Cc: Andi Kleen Signed-off-by: Andrew Morton Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/arch/x86/vdso/vvar.c b/arch/x86/vdso/vvar.c index 6fc2221..1b7e703 100644 --- a/arch/x86/vdso/vvar.c +++ b/arch/x86/vdso/vvar.c @@ -8,5 +8,5 @@ #include #include -#define VEXTERN(x) typeof (__ ## x) *vdso_ ## x = (void *)VMAGIC; +#define VEXTERN(x) typeof (__ ## x) *const vdso_ ## x = (void *)VMAGIC; #include "vextern.h"