Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753624Ab0GGADw (ORCPT ); Tue, 6 Jul 2010 20:03:52 -0400 Received: from smtp1.linux-foundation.org ([140.211.169.13]:54568 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752052Ab0GGADu (ORCPT ); Tue, 6 Jul 2010 20:03:50 -0400 Date: Tue, 6 Jul 2010 17:02:20 -0700 From: Andrew Morton To: rostedt@goodmis.org Cc: KOSAKI Motohiro , Ingo Molnar , Peter Zijlstra , LKML , linux-mm , Minchan Kim , David Rientjes , KAMEZAWA Hiroyuki , James Morris Subject: Re: [PATCH 2/2] sched: make sched_param arugment static variables in some sched_setscheduler() caller Message-Id: <20100706170220.f3219001.akpm@linux-foundation.org> In-Reply-To: <1278460187.1537.107.camel@gandalf.stny.rr.com> References: <20100702144941.8fa101c3.akpm@linux-foundation.org> <20100706091607.CCCC.A69D9226@jp.fujitsu.com> <20100706095013.CCD9.A69D9226@jp.fujitsu.com> <1278454438.1537.54.camel@gandalf.stny.rr.com> <20100706161253.79bfb761.akpm@linux-foundation.org> <1278460187.1537.107.camel@gandalf.stny.rr.com> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.18.9; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3621 Lines: 94 On Tue, 06 Jul 2010 19:49:47 -0400 Steven Rostedt wrote: > On Tue, 2010-07-06 at 16:12 -0700, Andrew Morton wrote: > > > Well if we're so worried about resource wastage then how about making > > all boot-time-only text and data reside in __init and __initdata > > sections rather than hanging around uselessly in memory for ever? > > That would be a patch I would like :-) > > I could probably do that when I get some time. > > > > > Only that's going to be hard because we went and added pointers into > > .init.text from .data due to `struct tracer.selftest', which will cause > > a storm of section mismatch warnings. Doh, should have invoked the > > selftests from initcalls. That might open the opportunity of running > > the selftests by modprobing the selftest module, too. > > They are called by initcalls. The initcalls register the tracers and > that is the time we call the selftest. No other time. It should all be __init! > Is there a way that we set up a function pointer to let the section > checks know that it is only called at bootup? There are various whitelisting hacks in there based on the name of the offending symbol. Search term: DEFAULT_SYMBOL_WHITE_LIST. It'd be cleaner to just zap the tracer.selftest field altogether and run the tests from initcalls if possible? > > > > And I _do_ wish the selftest module was modprobeable, rather than this > > monstrosity: > > The selftests are done by individual tracers at boot up. It would be > hard to modprobe them at that time. No, if tracer_selftest.o was linked into vmlinux then the tests get run within do_initcalls(). If tracer_selftest.o is a module, then the tests get run at modprobe-time. The latter option may not be terribly useful but it comes basically for free as a reward for doing stuff correctly. > > > #ifdef CONFIG_FTRACE_SELFTEST > > /* Let selftest have access to static functions in this file */ > > #include "trace_selftest.c" > > #endif > > > > Really? Who had a tastebudectomy over there? At least call it > > trace_selftest.inc or something, so poor schmucks don't go scrabbling > > around wondering "how the hell does this thing get built oh no they > > didn't really go and #include it did they?" > > > Well this is also the way sched.c adds all its extra code. The sched.c hack sucks too. > Making it > trace_selftest.inc would make it hard to know what the hell it was. trace_selftest.i_really_suck? > And > also hard for editors to know what type of file it is, or things can be > missed with a 'find . -name "*.[ch]" | xargs grep blahblah' Well bad luck. Of _course_ it makes a mess. It's already a mess. How's about just removing the `static' from whichever symbols tracer_selftest needs? That'd surely be better than #including a .c file. > Yes, the self tests are ugly and can probably go with an overhaul. Since > we are trying to get away from the tracer plugins anyway, they will > start disappearing when the plugins do. > > We should have some main selftests anyway. Those are for the TRACE_EVENT > tests (which are not even in the trace_selftest.c file, and the function > testing which currently are, as well as the latency testers. > > The trace_selftest.c should eventually be replaced with more compact > tests for the specific types of tracing. -- 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/