[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1353423893-23125-10-git-send-email-daniel.kiper@oracle.com>
Date: Tue, 20 Nov 2012 16:04:51 +0100
From: Daniel Kiper <daniel.kiper@...cle.com>
To: andrew.cooper3@...rix.com, ebiederm@...ssion.com, hpa@...or.com,
jbeulich@...e.com, konrad.wilk@...cle.com, mingo@...hat.com,
tglx@...utronix.de, x86@...nel.org, kexec@...ts.infradead.org,
linux-kernel@...r.kernel.org,
virtualization@...ts.linux-foundation.org,
xen-devel@...ts.xensource.com
Cc: Daniel Kiper <daniel.kiper@...cle.com>
Subject: [PATCH v2 09/11] x86/xen/enlighten: Add init and crash kexec/kdump hooks
Add init and crash kexec/kdump hooks.
Signed-off-by: Daniel Kiper <daniel.kiper@...cle.com>
---
arch/x86/xen/enlighten.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 586d838..e5b4d0d 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -31,6 +31,7 @@
#include <linux/pci.h>
#include <linux/gfp.h>
#include <linux/memblock.h>
+#include <linux/kexec.h>
#include <xen/xen.h>
#include <xen/events.h>
@@ -67,6 +68,7 @@
#include <asm/hypervisor.h>
#include <asm/mwait.h>
#include <asm/pci_x86.h>
+#include <asm/xen/kexec.h>
#ifdef CONFIG_ACPI
#include <linux/acpi.h>
@@ -1254,6 +1256,12 @@ static void xen_machine_power_off(void)
static void xen_crash_shutdown(struct pt_regs *regs)
{
+#ifdef CONFIG_KEXEC
+ if (kexec_crash_image) {
+ crash_save_cpu(regs, safe_smp_processor_id());
+ return;
+ }
+#endif
xen_reboot(SHUTDOWN_crash);
}
@@ -1331,6 +1339,10 @@ asmlinkage void __init xen_start_kernel(void)
xen_init_mmu_ops();
+#ifdef CONFIG_KEXEC
+ xen_init_kexec_ops();
+#endif
+
/* Prevent unwanted bits from being set in PTEs. */
__supported_pte_mask &= ~_PAGE_GLOBAL;
#if 0
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists