From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx3.mail.elte.hu (mx3.mail.elte.hu [157.181.1.138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A9336DDE17 for ; Sun, 22 Mar 2009 03:33:37 +1100 (EST) Date: Sat, 21 Mar 2009 17:33:28 +0100 From: Ingo Molnar To: Steven Rostedt Subject: Re: [PATCH] tracing: Fix TRACING_SUPPORT dependency Message-ID: <20090321163328.GH11183@elte.hu> References: <20090320150914.GA22769@oksana.dev.rtsoft.ru> <20090320190428.GD6224@elte.hu> <20090320193904.GA13707@oksana.dev.rtsoft.ru> <20090320195743.GA25147@elte.hu> <20090320202247.GA30654@oksana.dev.rtsoft.ru> <20090321161814.GC11183@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: Cc: linuxppc-dev@ozlabs.org, Steven Rostedt , linux-kernel@vger.kernel.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , * Steven Rostedt wrote: > > On Sat, 21 Mar 2009, Ingo Molnar wrote: > > > > > * Anton Vorontsov wrote: > > > > > On Fri, Mar 20, 2009 at 08:57:43PM +0100, Ingo Molnar wrote: > > > > > > > > * Anton Vorontsov wrote: > > > > > > > > > On Fri, Mar 20, 2009 at 08:04:28PM +0100, Ingo Molnar wrote: > > > > > > > > > > > > * Anton Vorontsov wrote: > > > > > > > > > > > > > commit 40ada30f9621fbd831ac2437b9a2a399aad34b00 ("tracing: clean > > > > > > > up menu"), despite the "clean up" in its purpose, introduced > > > > > > > behavioural change for Kconfig symbols: we no longer able to > > > > > > > select tracing support on PPC32 (because IRQFLAGS_SUPPORT isn't > > > > > > > yet implemented). > > > > > > > > > > > > Could you please solve this by implementing proper > > > > > > irqflag-tracing support? It's been available upstream for almost > > > > > > three years. It's needed for lockdep support as well, etc. > > > > > > > > > > Breaking things via clean up patches is an interesting method of > > > > > encouraging something to implement. ;-) > > > > > > > > > > Surely I'll look into implementing irqflags tracing, but > > > > > considering that no one ever needed this for almost three years, > > > > > [...] > > > > > > > > Weird, there's no lockdep support? > > > > > > *ashamed*: apparently no such support currently exist for PPC32. ;-) > > > > Hm, do all the tracers even compile on ppc32 with your patch? > > > > We had periodic build failures on weird, unmaintained architectures > > that had no irqflags-tracing support and hence didnt know the > > raw_irqs_save/restore primitives ... > > > > I'm not trying to make things more difficult for you (and we can > > apply your patch if it builds fine and does not cause problems > > elsewhere), but there were some real downsides to not having proper > > irq APIs ... > > Note, the issue is not with the hooks into local_irq_save/restore, > but with the entry.S code. That code is very sensitive where the > irqs are enabled and disabled. i know. What i'm talking about is that non-lockdep architectures have the habit of not defining raw_local_irq_save() - which the tracing core relies on. Ingo