Release 4.14 arch/x86/include/asm/bugs.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_X86_BUGS_H
#define _ASM_X86_BUGS_H
#include <asm/processor.h>
extern void check_bugs(void);
#if defined(CONFIG_CPU_SUP_INTEL)
void check_mpx_erratum(struct cpuinfo_x86 *c);
#else
static inline void check_mpx_erratum(struct cpuinfo_x86 *c) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Hansen | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
#endif
#if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
int ppro_with_ram_bug(void);
#else
static inline int ppro_with_ram_bug(void) { return 0; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Petazzoni | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#endif
#endif /* _ASM_X86_BUGS_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Hansen | 33 | 39.76% | 1 | 12.50% |
Thomas Petazzoni | 16 | 19.28% | 1 | 12.50% |
Thomas Gleixner | 12 | 14.46% | 2 | 25.00% |
Yinghai Lu | 11 | 13.25% | 1 | 12.50% |
Ingo Molnar | 7 | 8.43% | 1 | 12.50% |
H. Peter Anvin | 3 | 3.61% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 1.20% | 1 | 12.50% |
Total | 83 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.