aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2008-10-03 09:39:21 -0400
committerIngo Molnar <mingo@elte.hu>2008-10-14 04:39:17 -0400
commit097d036a2f25eecc42435c57e010aaf4a2eed2d9 (patch)
treeee5e40b940475e8a047e02093688072ff3e330d3 /init
parent6450c1d3213e27b0dcbf34cce7ad1ae74244c520 (diff)
tracing/fastboot: only trace non-module initcalls
At this time, only built-in initcalls interest us. We can't really produce a relevant graph if we include the modules initcall too. I had good results after this patch (see svg in attachment). Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'init')
-rw-r--r--init/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c
index 8e96a0ef17f4..e7939de80f3e 100644
--- a/init/main.c
+++ b/init/main.c
@@ -886,6 +886,7 @@ static int __init kernel_init(void * unused)
886 * we're essentially up and running. Get rid of the 886 * we're essentially up and running. Get rid of the
887 * initmem segments and start the user-mode stuff.. 887 * initmem segments and start the user-mode stuff..
888 */ 888 */
889 stop_boot_trace();
889 init_post(); 890 init_post();
890 return 0; 891 return 0;
891} 892}