Release 4.14 arch/arm64/include/asm/xen/events.h
/* 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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 24 | 100.00% | 1 | 100.00% |
Total | 24 | 100.00% | 1 | 100.00% |
#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;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Julien Grall | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#endif /* _ASM_ARM64_XEN_EVENTS_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 57 | 80.28% | 1 | 33.33% |
Julien Grall | 13 | 18.31% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 1.41% | 1 | 33.33% |
Total | 71 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.