Release 4.14 arch/x86/include/asm/irq_work.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_IRQ_WORK_H
#define _ASM_IRQ_WORK_H
#include <asm/cpufeature.h>
#ifdef CONFIG_X86_LOCAL_APIC
static inline bool arch_irq_work_has_interrupt(void)
{
return boot_cpu_has(X86_FEATURE_APIC);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Frédéric Weisbecker | 11 | 73.33% | 1 | 50.00% |
Borislav Petkov | 4 | 26.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
extern void arch_irq_work_raise(void);
#else
static inline bool arch_irq_work_has_interrupt(void)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#endif
#endif /* _ASM_IRQ_WORK_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 26 | 48.15% | 1 | 20.00% |
Frédéric Weisbecker | 22 | 40.74% | 1 | 20.00% |
Borislav Petkov | 5 | 9.26% | 2 | 40.00% |
Greg Kroah-Hartman | 1 | 1.85% | 1 | 20.00% |
Total | 54 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.