]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
stacktrace: fix modular build, export print_stack_trace and save_stack_trace
authorIngo Molnar <mingo@elte.hu>
Fri, 27 Jun 2008 19:20:17 +0000 (21:20 +0200)
committerIngo Molnar <mingo@elte.hu>
Mon, 30 Jun 2008 07:20:55 +0000 (09:20 +0200)
fix:

ERROR: "print_stack_trace" [kernel/backtracetest.ko] undefined!
ERROR: "save_stack_trace" [kernel/backtracetest.ko] undefined!

Signed-off-by: Ingo Molnar <mingo@elte.hu>
and fix:

  Building modules, stage 2.
  MODPOST 376 modules
ERROR: "print_stack_trace" [kernel/backtracetest.ko] undefined!
make[1]: *** [__modpost] Error 1

Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/stacktrace.c
kernel/stacktrace.c

index c28c342c162f0a90d3ad6e50ba0fb1d5ecd132a7..a03e7f6d90c35af5f4638f6394e4a39f6e2e4020 100644 (file)
@@ -74,6 +74,7 @@ void save_stack_trace(struct stack_trace *trace)
        if (trace->nr_entries < trace->max_entries)
                trace->entries[trace->nr_entries++] = ULONG_MAX;
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
 
 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
 {
@@ -81,3 +82,4 @@ void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
        if (trace->nr_entries < trace->max_entries)
                trace->entries[trace->nr_entries++] = ULONG_MAX;
 }
+EXPORT_SYMBOL_GPL(save_stack_trace_tsk);
index 7eaea9d02a526916d5df6379a54135f86223f354..94b527ef1d1e37fe060ab812f13ef7276910549f 100644 (file)
@@ -6,6 +6,7 @@
  *  Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  */
 #include <linux/sched.h>
+#include <linux/module.h>
 #include <linux/kallsyms.h>
 #include <linux/stacktrace.h>
 
@@ -21,4 +22,5 @@ void print_stack_trace(struct stack_trace *trace, int spaces)
                print_ip_sym(trace->entries[i]);
        }
 }
+EXPORT_SYMBOL_GPL(print_stack_trace);