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