Release 4.13 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((long long*)(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 | 20.00% |
Julien Grall | 13 | 19.70% | 1 | 20.00% |
Ian Campbell | 11 | 16.67% | 2 | 40.00% |
Arnd Bergmann | 1 | 1.52% | 1 | 20.00% |
Total | 66 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.