From patchwork Tue Sep 23 14:31:20 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC] Demultiplexing SIGTRAP signal -v2 Date: Tue, 23 Sep 2008 04:31:20 -0000 From: Ingo Molnar X-Patchwork-Id: 1109 Message-Id: <20080923143120.GD14041@elte.hu> To: Srinivasa Ds Cc: linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org, paulus@samba.org, "H. Peter Anvin" , akpm@linux-foundation.org, Thomas Gleixner , Roland McGrath * Srinivasa Ds wrote: > > -tip testing found the following build error with the attached > > config: > > Ingo, Reproduced build break issue with your config on tip tree. It > was a costly overlook to miss one header file. I included it in this > patch and tested it out. thanks - applied the delta fix below to tip/core/signal. Ingo ---------------> >From e8d3f455de4f42d4bab2f6f1aeb2cf3bd18eb508 Mon Sep 17 00:00:00 2001 From: Srinivasa Ds Date: Tue, 23 Sep 2008 15:23:52 +0530 Subject: [PATCH] signals: demultiplexing SIGTRAP signal, fix fix build breakage, missing header file. Signed-off-by: Srinivasa DS Signed-off-by: Ingo Molnar --- include/asm-x86/traps.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/asm-x86/traps.h b/include/asm-x86/traps.h index 4b1e904..7a692ba 100644 --- a/include/asm-x86/traps.h +++ b/include/asm-x86/traps.h @@ -1,6 +1,8 @@ #ifndef ASM_X86__TRAPS_H #define ASM_X86__TRAPS_H +#include + /* Common in X86_32 and X86_64 */ asmlinkage void divide_error(void); asmlinkage void debug(void);