stacktrace: export save_stack_trace[_tsk]
authorIngo Molnar <mingo@elte.hu>
Thu, 3 Jul 2008 07:17:55 +0000 (09:17 +0200)
committerIngo Molnar <mingo@elte.hu>
Thu, 3 Jul 2008 07:17:55 +0000 (09:17 +0200)
Andrew Morton reported this against linux-next:

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

Reported-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/arm/kernel/stacktrace.c
arch/avr32/kernel/stacktrace.c
arch/mips/kernel/stacktrace.c
arch/powerpc/kernel/stacktrace.c
arch/s390/kernel/stacktrace.c
arch/sh/kernel/stacktrace.c
arch/sparc64/kernel/stacktrace.c

index ae31deb..6b3ffde 100644 (file)
@@ -66,4 +66,5 @@ void save_stack_trace(struct stack_trace *trace)
 
        walk_stackframe(fp, base, base + THREAD_SIZE, save_trace, &data);
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
 #endif
index 9a68190..f4bdb44 100644 (file)
@@ -51,3 +51,4 @@ void save_stack_trace(struct stack_trace *trace)
                fp = frame->fp;
        }
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
index ebd9db8..5eb4681 100644 (file)
@@ -73,3 +73,4 @@ void save_stack_trace(struct stack_trace *trace)
        prepare_frametrace(regs);
        save_context_stack(trace, regs);
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
index 9629440..9861f17 100644 (file)
@@ -44,3 +44,4 @@ void save_stack_trace(struct stack_trace *trace)
                sp = newsp;
        }
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
index 85e46a5..57571f1 100644 (file)
@@ -81,6 +81,7 @@ void save_stack_trace(struct stack_trace *trace)
                           S390_lowcore.thread_info,
                           S390_lowcore.thread_info + THREAD_SIZE, 1);
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
 
 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
 {
@@ -93,3 +94,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 d41e561..1b2ae35 100644 (file)
@@ -34,3 +34,4 @@ void save_stack_trace(struct stack_trace *trace)
                }
        }
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
index c73ce3f..49656ed 100644 (file)
@@ -47,3 +47,4 @@ void save_stack_trace(struct stack_trace *trace)
                        trace->entries[trace->nr_entries++] = pc;
        } while (trace->nr_entries < trace->max_entries);
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);