From: Andi Kleen Date: Mon, 5 Aug 2013 22:02:50 +0000 (-0700) Subject: x86, asmlinkage, vdso: Mark vdso variables __visible X-Git-Tag: upstream/snapshot3+hdmi~4282^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28596b6a8779b736829ad837f95fdc2e81bdd1ee;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git x86, asmlinkage, vdso: Mark vdso variables __visible Signed-off-by: Andi Kleen Link: http://lkml.kernel.org/r/1375740170-7446-17-git-send-email-andi@firstfloor.org Signed-off-by: H. Peter Anvin --- diff --git a/arch/x86/include/asm/vvar.h b/arch/x86/include/asm/vvar.h index de656ac..d76ac40 100644 --- a/arch/x86/include/asm/vvar.h +++ b/arch/x86/include/asm/vvar.h @@ -35,7 +35,7 @@ #define DEFINE_VVAR(type, name) \ type name \ - __attribute__((section(".vvar_" #name), aligned(16))) + __attribute__((section(".vvar_" #name), aligned(16))) __visible #define VVAR(name) (*vvaraddr_ ## name)