Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762443AbZCSXvc (ORCPT ); Thu, 19 Mar 2009 19:51:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762234AbZCSXuE (ORCPT ); Thu, 19 Mar 2009 19:50:04 -0400 Received: from e23smtp08.au.ibm.com ([202.81.31.141]:51739 "EHLO e23smtp08.au.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1762272AbZCSXuB (ORCPT ); Thu, 19 Mar 2009 19:50:01 -0400 Date: Fri, 20 Mar 2009 05:19:49 +0530 From: "K.Prasad" To: Ingo Molnar , Linux Kernel Mailing List Cc: Alan Stern , Andrew Morton , Benjamin Herrenschmidt , Frederic Weisbecker , Maneesh Soni , Roland McGrath , Steven Rostedt , "K.Prasad" Subject: [Patch 09/11] Cleanup HW Breakpoint registers before kexec Message-ID: <20090319234949.GJ10517@in.ibm.com> References: <20090319234044.410725944@K.Prasad> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline; filename=9 User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2063 Lines: 60 From: Alan Stern This patch disables Hardware breakpoints before doing a 'kexec' on the machine. [K.Prasad: Split-out from the bigger patch and minor changes following re-basing] Signed-off-by: K.Prasad Signed-off-by: Alan Stern --- arch/x86/kernel/machine_kexec_32.c | 2 ++ arch/x86/kernel/machine_kexec_64.c | 2 ++ 2 files changed, 4 insertions(+) Index: linux-2.6-tip.hbkpt/arch/x86/kernel/machine_kexec_32.c =================================================================== --- linux-2.6-tip.hbkpt.orig/arch/x86/kernel/machine_kexec_32.c +++ linux-2.6-tip.hbkpt/arch/x86/kernel/machine_kexec_32.c @@ -25,6 +25,7 @@ #include #include #include +#include static void set_idt(void *newidt, __u16 limit) { @@ -202,6 +203,7 @@ void machine_kexec(struct kimage *image) /* Interrupts aren't acceptable while we reboot */ local_irq_disable(); + hw_breakpoint_disable(); if (image->preserve_context) { #ifdef CONFIG_X86_IO_APIC Index: linux-2.6-tip.hbkpt/arch/x86/kernel/machine_kexec_64.c =================================================================== --- linux-2.6-tip.hbkpt.orig/arch/x86/kernel/machine_kexec_64.c +++ linux-2.6-tip.hbkpt/arch/x86/kernel/machine_kexec_64.c @@ -18,6 +18,7 @@ #include #include #include +#include static int init_one_level2_page(struct kimage *image, pgd_t *pgd, unsigned long addr) @@ -282,6 +283,7 @@ void machine_kexec(struct kimage *image) /* Interrupts aren't acceptable while we reboot */ local_irq_disable(); + hw_breakpoint_disable(); if (image->preserve_context) { #ifdef CONFIG_X86_IO_APIC -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/