Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760375AbYAJTLY (ORCPT ); Thu, 10 Jan 2008 14:11:24 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760703AbYAJTKz (ORCPT ); Thu, 10 Jan 2008 14:10:55 -0500 Received: from ms-smtp-02.nyroc.rr.com ([24.24.2.56]:36773 "EHLO ms-smtp-02.nyroc.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760659AbYAJTKy (ORCPT ); Thu, 10 Jan 2008 14:10:54 -0500 Date: Thu, 10 Jan 2008 14:10:46 -0500 (EST) From: Steven Rostedt X-X-Sender: rostedt@gandalf.stny.rr.com To: Sam Ravnborg cc: LKML , Ingo Molnar , Linus Torvalds , Andrew Morton , Peter Zijlstra , Christoph Hellwig , Mathieu Desnoyers , Gregory Haskins , Arnaldo Carvalho de Melo , Thomas Gleixner , Tim Bird , "Frank Ch. Eigler" , Steven Rostedt Subject: Re: [RFC PATCH 01/22 -v2] Add basic support for gcc profiler instrumentation In-Reply-To: <20080110182828.GA19399@uranus.ravnborg.org> Message-ID: References: <20080109232914.676624725@goodmis.org> <20080109233042.386384204@goodmis.org> <20080110182828.GA19399@uranus.ravnborg.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1369 Lines: 54 Hi Sam, On Thu, 10 Jan 2008, Sam Ravnborg wrote: > Hi Steven. > > > Index: linux-compile-i386.git/arch/x86/Kconfig > > =================================================================== > > --- linux-compile-i386.git.orig/arch/x86/Kconfig 2008-01-09 14:09:36.000000000 -0500 > > +++ linux-compile-i386.git/arch/x86/Kconfig 2008-01-09 14:10:07.000000000 -0500 > > @@ -28,6 +28,10 @@ config GENERIC_CMOS_UPDATE > > bool > > default y > > > > +config ARCH_HAS_MCOUNT > > + bool > > + default y > > + > > Please use the following scheme: > > arch/x86/Kconfig: > config X86 > + select HAVE_MCOUNT > > lib/tracing/Kconfig > > + # ARCH shall select HAVE_MCOUNT if they provide this function > + config HAVE_MCOUNT > + bool > + > + config MCOUNT > + bool > + select FRAME_POINTER > > And then in your later patches: > +config MCOUNT_TRACER > + bool "Profiler instrumentation based tracer" > + depends on DEBUG_KERNEL && HAVE_MCOUNT > + select MCOUNT > + help > + Use profiler.... Thanks, this does look like a cleaner approach. I'll implement it into my next series. -- Steve -- 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/