From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754221AbcBBCd6 (ORCPT ); Mon, 1 Feb 2016 21:33:58 -0500 Received: from mail-ob0-f193.google.com ([209.85.214.193]:33393 "EHLO mail-ob0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754076AbcBBCd4 (ORCPT ); Mon, 1 Feb 2016 21:33:56 -0500 From: Jeffrey Merkey To: linux-kernel@vger.kernel.org Cc: hpa@zytor.com, jeffmerkey@gmail.com, mingo@redhat.com, tglx@linutronix.de, x86@kernel.org Subject: [PATCH v5 1/3] Add BUG_XX() debugging options Date: Mon, 1 Feb 2016 19:33:46 -0700 Message-Id: <1454380428-31474-1-git-send-email-jeffmerkey@gmail.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch series adds config options which can be set during compile to direct the compiler to output a breakpoint instruction anywhere a BUG() macro has been placed in the kernel to trigger the system to enter a debugger if a bug is detected by the system. Use of this compile time option also allows conditional breakpoints to be set in the kernel with these currently used macros. This addition is extremely useful for debugging hard and soft lockups real time and quickly from a console debugger, and other areas of the kernel. Signed-off-by: Jeffrey Merkey --- arch/x86/include/asm/bug.h | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/arch/x86/include/asm/bug.h b/arch/x86/include/asm/bug.h index ba38ebb..df26c2b 100644 --- a/arch/x86/include/asm/bug.h +++ b/arch/x86/include/asm/bug.h @@ -11,6 +11,13 @@ # define __BUG_C0 "2:\t.long 1b - 2b, %c0 - 2b\n" #endif +#ifdef CONFIG_DEBUG_BUG +#define BUG() \ +do { \ + asm volatile("int3"); \ + unreachable(); \ +} while (0) +#else #define BUG() \ do { \ asm volatile("1:\tud2\n" \ @@ -23,7 +30,14 @@ do { \ "i" (sizeof(struct bug_entry))); \ unreachable(); \ } while (0) - +#endif +#else +#ifdef CONFIG_DEBUG_BUG +#define BUG() \ +do { \ + asm volatile("int3"); \ + unreachable(); \ +} while (0) #else #define BUG() \ do { \ @@ -31,6 +45,7 @@ do { \ unreachable(); \ } while (0) #endif +#endif #include -- 1.8.3.1