diff options
Diffstat (limited to 'arch/x86/include/asm/vsyscall.h')
| -rw-r--r-- | arch/x86/include/asm/vsyscall.h | 12 | 
1 files changed, 2 insertions, 10 deletions
diff --git a/arch/x86/include/asm/vsyscall.h b/arch/x86/include/asm/vsyscall.h index d0983d255fb..d55597351f6 100644 --- a/arch/x86/include/asm/vsyscall.h +++ b/arch/x86/include/asm/vsyscall.h @@ -16,27 +16,19 @@ enum vsyscall_num {  #ifdef __KERNEL__  #include <linux/seqlock.h> -#define __section_vgetcpu_mode __attribute__ ((unused, __section__ (".vgetcpu_mode"), aligned(16))) -#define __section_jiffies __attribute__ ((unused, __section__ (".jiffies"), aligned(16))) -  /* Definitions for CONFIG_GENERIC_TIME definitions */ -#define __section_vsyscall_gtod_data __attribute__ \ -	((unused, __section__ (".vsyscall_gtod_data"),aligned(16))) -#define __section_vsyscall_clock __attribute__ \ -	((unused, __section__ (".vsyscall_clock"),aligned(16)))  #define __vsyscall_fn \  	__attribute__ ((unused, __section__(".vsyscall_fn"))) notrace  #define VGETCPU_RDTSCP	1  #define VGETCPU_LSL	2 -extern int __vgetcpu_mode; -extern volatile unsigned long __jiffies; -  /* kernel space (writeable) */  extern int vgetcpu_mode;  extern struct timezone sys_tz; +#include <asm/vvar.h> +  extern void map_vsyscall(void);  #endif /* __KERNEL__ */  |