Release 4.11 arch/powerpc/kvm/irq.h
#ifndef __IRQ_H
#define __IRQ_H
#include <linux/kvm_host.h>
static inline int irqchip_in_kernel(struct kvm *kvm)
{
int ret = 0;
#ifdef CONFIG_KVM_MPIC
ret = ret || (kvm->arch.mpic != NULL);
#endif
#ifdef CONFIG_KVM_XICS
ret = ret || (kvm->arch.xics != NULL);
#endif
smp_rmb();
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexander Graf | 42 | 68.85% | 1 | 50.00% |
Paul Mackerras | 19 | 31.15% | 1 | 50.00% |
Total | 61 | 100.00% | 2 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexander Graf | 53 | 73.61% | 1 | 50.00% |
Paul Mackerras | 19 | 26.39% | 1 | 50.00% |
Total | 72 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.