summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/vvar.h
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2013-08-06 02:02:50 +0400
committerH. Peter Anvin <hpa@linux.intel.com>2013-08-07 01:21:08 +0400
commit28596b6a8779b736829ad837f95fdc2e81bdd1ee (patch)
tree10faa11526c977764535c6df6d1fa07059932a4a /arch/x86/include/asm/vvar.h
parentd6efc2f7240b4e55590df69d74f33fdb72ce934a (diff)
downloadlinux-28596b6a8779b736829ad837f95fdc2e81bdd1ee.tar.xz
x86, asmlinkage, vdso: Mark vdso variables __visible
Signed-off-by: Andi Kleen <ak@linux.intel.com> Link: http://lkml.kernel.org/r/1375740170-7446-17-git-send-email-andi@firstfloor.org Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/include/asm/vvar.h')
-rw-r--r--arch/x86/include/asm/vvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/vvar.h b/arch/x86/include/asm/vvar.h
index de656ac2af41..d76ac40da206 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)