Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755846AbZFASPY (ORCPT ); Mon, 1 Jun 2009 14:15:24 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752025AbZFASPI (ORCPT ); Mon, 1 Jun 2009 14:15:08 -0400 Received: from e28smtp07.in.ibm.com ([59.145.155.7]:58653 "EHLO e28smtp07.in.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752295AbZFASPG (ORCPT ); Mon, 1 Jun 2009 14:15:06 -0400 Date: Mon, 1 Jun 2009 23:45:03 +0530 From: "K.Prasad" To: Frederic Weisbecker Cc: Linux Kernel Mailing List , Ingo Molnar , Alan Stern , "K.Prasad" Subject: [Patch 07/12] Modify signal handling code to refrain from re-enabling HW Breakpoints Message-ID: <20090601181503.GH23582@in.ibm.com> References: <20090601180605.799735829@prasadkr_t60p.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline; filename=modify_signal_07 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: 1399 Lines: 37 This patch disables re-enabling of Hardware Breakpoint registers through the signal handling code. This is now done during hw_breakpoint_handler(). Original-patch-by: Alan Stern Signed-off-by: K.Prasad Reviewed-by: Alan Stern --- arch/x86/kernel/signal.c | 9 --------- 1 file changed, 9 deletions(-) Index: linux-2.6-tip.hbkpt/arch/x86/kernel/signal.c =================================================================== --- linux-2.6-tip.hbkpt.orig/arch/x86/kernel/signal.c +++ linux-2.6-tip.hbkpt/arch/x86/kernel/signal.c @@ -799,15 +799,6 @@ static void do_signal(struct pt_regs *re signr = get_signal_to_deliver(&info, &ka, regs, NULL); if (signr > 0) { - /* - * Re-enable any watchpoints before delivering the - * signal to user space. The processor register will - * have been cleared if the watchpoint triggered - * inside the kernel. - */ - if (current->thread.debugreg7) - set_debugreg(current->thread.debugreg7, 7); - /* Whee! Actually deliver the signal. */ if (handle_signal(signr, &info, &ka, oldset, regs) == 0) { /* -- 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/