Files
linux-apfs/arch/x86/include/asm/vsyscall.h
T

26 lines
635 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
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>
#include <uapi/asm/vsyscall.h>
2005-04-16 15:20:36 -07:00
#ifdef CONFIG_X86_VSYSCALL_EMULATION
2008-01-30 13:32:39 +01:00
extern void map_vsyscall(void);
2017-12-12 07:56:42 -08:00
extern void set_vsyscall_pgtable_user_bits(pgd_t *root);
2008-01-30 13:32:39 +01:00
/*
* Called on instruction fetch fault in vsyscall page.
* Returns true if handled.
*/
extern bool emulate_vsyscall(struct pt_regs *regs, unsigned long address);
#else
static inline void map_vsyscall(void) {}
static inline bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
{
return false;
}
#endif
2008-10-22 22:26:29 -07:00
#endif /* _ASM_X86_VSYSCALL_H */