search for: b622e411eef8

Displaying 1 result from an estimated 1 matches for "b622e411eef8".

2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...| 2 xen/drivers/acpi/Makefile | 1 xen/include/acpi/actbl1.h | 103 ++++ xen/include/asm-x86/fixmap.h | 3 xen/include/xen/acpi.h | 1 xen/include/xen/spinlock.h | 7 13 files changed, 1697 insertions(+) diff -r b622e411eef8 xen/arch/x86/acpi/boot.c --- a/xen/arch/x86/acpi/boot.c Thu Jun 24 21:56:03 2010 +0100 +++ b/xen/arch/x86/acpi/boot.c Fri Aug 20 17:38:07 2010 +0800 @@ -938,6 +938,8 @@ int __init acpi_boot_init(void) acpi_mmcfg_init(); + erst_init(); + return 0; } diff -r b622e411eef8 x...