Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/include/asm/bugs.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _ASM_X86_BUGS_H
3
#define _ASM_X86_BUGS_H
4
5
#include <asm/processor.h>
6
7
#if defined(CONFIG_CPU_SUP_INTEL) && defined(CONFIG_X86_32)
8
int ppro_with_ram_bug(void);
9
#else
10
static inline int ppro_with_ram_bug(void) { return 0; }
11
#endif
12
13
extern void cpu_bugs_smt_update(void);
14
15
#endif /* _ASM_X86_BUGS_H */
16
17