Release 4.11 arch/arm/include/asm/xen/events.h
#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);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
#define xchg_xen_ulong(ptr, val) atomic64_xchg(container_of((ptr), \
atomic64_t, \
counter), (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_ARM_XEN_EVENTS_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 41 | 62.12% | 1 | 25.00% |
Julien Grall | 13 | 19.70% | 1 | 25.00% |
Ian Campbell | 12 | 18.18% | 2 | 50.00% |
Total | 66 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.