File: intel.h

package info (click to toggle)
mcelog 147%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 876 kB
  • ctags: 979
  • sloc: ansic: 7,634; sh: 482; makefile: 110; python: 60
file content (33 lines) | stat: -rw-r--r-- 796 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
enum cputype select_intel_cputype(int family, int model);
int is_intel_cpu(int cpu);
int mce_filter_intel(struct mce *m, unsigned recordlen);
void intel_cpu_init(enum cputype cpu);

extern int memory_error_support;

#define CASE_INTEL_CPUS \
	case CPU_P6OLD: \
	case CPU_CORE2: \
	case CPU_NEHALEM: \
	case CPU_DUNNINGTON: \
	case CPU_TULSA:	\
	case CPU_P4: \
	case CPU_INTEL: \
	case CPU_XEON75XX: \
	case CPU_SANDY_BRIDGE_EP: \
	case CPU_SANDY_BRIDGE: \
	case CPU_IVY_BRIDGE: \
	case CPU_IVY_BRIDGE_EPEX: \
	case CPU_HASWELL: \
	case CPU_HASWELL_EPEX: \
	case CPU_BROADWELL: \
	case CPU_BROADWELL_DE: \
	case CPU_BROADWELL_EPEX: \
	case CPU_ATOM:	\
	case CPU_KNIGHTS_LANDING: \
	case CPU_KNIGHTS_MILL: \
	case CPU_SKYLAKE: \
	case CPU_SKYLAKE_XEON: \
	case CPU_KABYLAKE: \
	case CPU_DENVERTON