OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
arm64
/
include
/
asm
/
xen
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:19 AM
rwxr-xr-x
📄
events.h
576 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
hypercall.h
31 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
hypervisor.h
32 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
interface.h
31 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
page-coherent.h
35 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
page.h
26 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xen-ops.h
149 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: events.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_ARM64_XEN_EVENTS_H #define _ASM_ARM64_XEN_EVENTS_H #include <asm/ptrace.h> #include <asm/atomic.h> enum ipi_vector { XEN_PLACEHOLDER_VECTOR, /* Xen IPIs go here */ XEN_NR_IPIS, }; static inline int xen_irqs_disabled(struct pt_regs *regs) { return raw_irqs_disabled_flags((unsigned long) regs->pstate); } #define xchg_xen_ulong(ptr, val) xchg((ptr), (val)) /* Rebind event channel is supported by default */ static inline bool xen_support_evtchn_rebind(void) { return true; } #endif /* _ASM_ARM64_XEN_EVENTS_H */