]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
arc: export symbol for save_stack_trace() in stacktrace.c
authorChen Gang <gang.chen@asianux.com>
Mon, 28 Oct 2013 03:00:38 +0000 (11:00 +0800)
committerVineet Gupta <vgupta@synopsys.com>
Wed, 6 Nov 2013 05:11:44 +0000 (10:41 +0530)
Need export its symbol just like other architectures done, or can not
pass compiling with allmodconfig, the related error:

    MODPOST 2994 modules
  ERROR: "save_stack_trace" [kernel/backtracetest.ko] undefined!
  ERROR: "save_stack_trace" [drivers/md/persistent-data/dm-persistent-data.ko] undefined!

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
arch/arc/kernel/stacktrace.c

index ab97b034922f035667fccc76263647f9e66db6cf..9ce47cfe23037fa12f463a350819731422aadd9b 100644 (file)
@@ -246,4 +246,5 @@ void save_stack_trace(struct stack_trace *trace)
        /* Pass NULL for task so it unwinds the current call frame */
        arc_unwind_core(NULL, NULL, __collect_all, trace);
 }
+EXPORT_SYMBOL_GPL(save_stack_trace);
 #endif