2008-10-23 05:26:29 +00:00
|
|
|
#ifndef _ASM_X86_VSYSCALL_H
|
|
|
|
#define _ASM_X86_VSYSCALL_H
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-09-16 19:15:48 +00:00
|
|
|
#include <linux/seqlock.h>
|
2012-12-14 22:37:13 +00:00
|
|
|
#include <uapi/asm/vsyscall.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-10-29 21:33:47 +00:00
|
|
|
#ifdef CONFIG_X86_VSYSCALL_EMULATION
|
2008-01-30 12:32:39 +00:00
|
|
|
extern void map_vsyscall(void);
|
|
|
|
|
2011-08-10 15:15:32 +00:00
|
|
|
/*
|
|
|
|
* Called on instruction fetch fault in vsyscall page.
|
|
|
|
* Returns true if handled.
|
|
|
|
*/
|
|
|
|
extern bool emulate_vsyscall(struct pt_regs *regs, unsigned long address);
|
2014-10-29 21:33:47 +00:00
|
|
|
#else
|
|
|
|
static inline void map_vsyscall(void) {}
|
|
|
|
static inline bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2011-08-10 15:15:32 +00:00
|
|
|
|
2008-10-23 05:26:29 +00:00
|
|
|
#endif /* _ASM_X86_VSYSCALL_H */
|