Release 4.11 arch/x86/include/asm/bugs.h
#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 | 40.24% | 1 | 14.29% |
Thomas Petazzoni | 16 | 19.51% | 1 | 14.29% |
Thomas Gleixner | 12 | 14.63% | 2 | 28.57% |
Yinghai Lu | 11 | 13.41% | 1 | 14.29% |
Ingo Molnar | 7 | 8.54% | 1 | 14.29% |
H. Peter Anvin | 3 | 3.66% | 1 | 14.29% |
Total | 82 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.