diff options
author | Andi Kleen | 2013-08-05 15:02:50 -0700 |
---|---|---|
committer | H. Peter Anvin | 2013-08-06 14:21:08 -0700 |
commit | 28596b6a8779b736829ad837f95fdc2e81bdd1ee (patch) | |
tree | 10faa11526c977764535c6df6d1fa07059932a4a /arch/x86/include | |
parent | d6efc2f7240b4e55590df69d74f33fdb72ce934a (diff) |
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')
-rw-r--r-- | arch/x86/include/asm/vvar.h | 2 |
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) |