OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
arm
/
include
/
asm
/
xen
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
events.h
637 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
110 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: events.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_ARM_XEN_EVENTS_H #define _ASM_ARM_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(regs->ARM_cpsr); } #define xchg_xen_ulong(ptr, val) atomic64_xchg(container_of((long long*)(ptr),\ atomic64_t, \ counter), (val)) /* Rebind event channel is supported by default */ static inline bool xen_support_evtchn_rebind(void) { return true; } #endif /* _ASM_ARM_XEN_EVENTS_H */