2008-10-23 13:26:29 +08:00
|
|
|
#ifndef _ASM_X86_VSYSCALL_H
|
|
|
|
#define _ASM_X86_VSYSCALL_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-17 03:15:48 +08:00
|
|
|
#include <linux/seqlock.h>
|
2012-12-15 06:37:13 +08:00
|
|
|
#include <uapi/asm/vsyscall.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-09-26 16:52:28 +08:00
|
|
|
#define VGETCPU_RDTSCP 1
|
|
|
|
#define VGETCPU_LSL 2
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* kernel space (writeable) */
|
2006-09-26 16:52:28 +08:00
|
|
|
extern int vgetcpu_mode;
|
2005-04-17 06:20:36 +08:00
|
|
|
extern struct timezone sys_tz;
|
|
|
|
|
2011-05-23 21:31:24 +08:00
|
|
|
#include <asm/vvar.h>
|
|
|
|
|
2008-01-30 20:32:39 +08:00
|
|
|
extern void map_vsyscall(void);
|
|
|
|
|
2011-08-10 23:15:32 +08:00
|
|
|
/*
|
|
|
|
* Called on instruction fetch fault in vsyscall page.
|
|
|
|
* Returns true if handled.
|
|
|
|
*/
|
|
|
|
extern bool emulate_vsyscall(struct pt_regs *regs, unsigned long address);
|
|
|
|
|
2012-11-28 09:28:57 +08:00
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
|
|
|
|
#define VGETCPU_CPU_MASK 0xfff
|
|
|
|
|
|
|
|
static inline unsigned int __getcpu(void)
|
|
|
|
{
|
|
|
|
unsigned int p;
|
|
|
|
|
|
|
|
if (VVAR(vgetcpu_mode) == VGETCPU_RDTSCP) {
|
|
|
|
/* Load per CPU data from RDTSCP */
|
|
|
|
native_read_tscp(&p);
|
|
|
|
} else {
|
|
|
|
/* Load per CPU data from GDT */
|
|
|
|
asm("lsl %1,%0" : "=r" (p) : "r" (__PER_CPU_SEG));
|
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_X86_64 */
|
|
|
|
|
2008-10-23 13:26:29 +08:00
|
|
|
#endif /* _ASM_X86_VSYSCALL_H */
|