kmemtrace: add kmemtrace_init()
authorIngo Molnar <mingo@elte.hu>
Tue, 6 Jan 2009 09:16:35 +0000 (10:16 +0100)
committerIngo Molnar <mingo@elte.hu>
Tue, 6 Jan 2009 09:16:35 +0000 (10:16 +0100)
Impact: build fix

leftover from the relayfs version - but we want to keep it because
this call is the earliest opportunity when we can start kmemtrace
tracing. (after kmem_cache_init()).

Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/kmemtrace.c

index 2bfdcd3..faaa5ae 100644 (file)
@@ -337,6 +337,11 @@ static struct tracer kmem_tracer __read_mostly = {
        .flags          = &kmem_tracer_flags
 };
 
+void kmemtrace_init(void)
+{
+       /* earliest opportunity to start kmem tracing */
+}
+
 static int __init init_kmem_tracer(void)
 {
        return register_tracer(&kmem_tracer);