From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763534AbXGNBaw (ORCPT ); Fri, 13 Jul 2007 21:30:52 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1765156AbXGNB1Q (ORCPT ); Fri, 13 Jul 2007 21:27:16 -0400 Received: from smtp.polymtl.ca ([132.207.4.11]:38501 "EHLO smtp.polymtl.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764763AbXGNB1N (ORCPT ); Fri, 13 Jul 2007 21:27:13 -0400 Message-Id: <20070714012624.150971859@polymtl.ca> References: <20070714012439.285079881@polymtl.ca> User-Agent: quilt/0.46-1 Date: Fri, 13 Jul 2007 21:24:44 -0400 From: Mathieu Desnoyers To: akpm@linux-foundation.org, linux-kernel@vger.kernel.org Cc: Mathieu Desnoyers , prasanna@in.ibm.com, ananth@in.ibm.com, anil.s.keshavamurthy@intel.com, davem@davemloft.net Subject: [patch 5/8] Immediate Values - kprobe header fix Content-Disposition: inline; filename=immediate-values-kprobes-headers.patch X-Poly-FromMTA: (dijkstra.casi.polymtl.ca [132.207.72.10]) at Sat, 14 Jul 2007 01:26:24 +0000 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Since the immediate values depend on the same int3 handler as kprobes implements for i386, we have to get architecture specific defines available for the kprobes trap handler (especially restore_interrupts()) wven when CONFIG_KPROBES is not selected. That kind of ifdef around a whole header does not make sense in the first place anyway. Signed-off-by: Mathieu Desnoyers CC: prasanna@in.ibm.com CC: ananth@in.ibm.com CC: anil.s.keshavamurthy@intel.com CC: davem@davemloft.net --- include/linux/kprobes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6-lttng/include/linux/kprobes.h =================================================================== --- linux-2.6-lttng.orig/include/linux/kprobes.h 2007-07-13 18:47:57.000000000 -0400 +++ linux-2.6-lttng/include/linux/kprobes.h 2007-07-13 18:48:45.000000000 -0400 @@ -36,9 +36,9 @@ #include #include -#ifdef CONFIG_KPROBES #include +#ifdef CONFIG_KPROBES /* kprobe_status settings */ #define KPROBE_HIT_ACTIVE 0x00000001 #define KPROBE_HIT_SS 0x00000002 -- Mathieu Desnoyers Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68