The machine check grading (as in deciding what should be done for a given register value) has to be done multiple times soon and it's also getting more complicated. So it makes sense to consolidate it into a single function. To get smaller and more straight forward and possibly more extensible code I opted towards a new table driven method. The various rules are put into a table when is then executed by a very simple interpreter. The grading engine is in a new file mce-severity.c. I also added a private include file mce-internal.h, because mce.h is already a bit too cluttered. This is dead code right now, but will be used in followon patches. Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
11 lines
454 B
Makefile
11 lines
454 B
Makefile
obj-y = mce.o therm_throt.o
|
|
|
|
obj-$(CONFIG_X86_NEW_MCE) += mce-severity.o
|
|
obj-$(CONFIG_X86_OLD_MCE) += k7.o p4.o p6.o
|
|
obj-$(CONFIG_X86_ANCIENT_MCE) += winchip.o p5.o
|
|
obj-$(CONFIG_X86_MCE_P4THERMAL) += mce_intel.o
|
|
obj-$(CONFIG_X86_MCE_INTEL) += mce_intel_64.o mce_intel.o
|
|
obj-$(CONFIG_X86_MCE_AMD) += mce_amd_64.o
|
|
obj-$(CONFIG_X86_MCE_NONFATAL) += non-fatal.o
|
|
obj-$(CONFIG_X86_MCE_THRESHOLD) += threshold.o
|
|
obj-$(CONFIG_X86_MCE_INJECT) += mce-inject.o
|