diff options
| author | Pierre Ossman <drzeus@drzeus.cx> | 2008-12-31 13:56:05 -0500 |
|---|---|---|
| committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-12-31 13:56:05 -0500 |
| commit | 418f19ea17a99421b22a64e101e14b6a16bed66d (patch) | |
| tree | 7c21fcc368c63f1f9907deac6d16b30bd371792d /kernel/stacktrace.c | |
| parent | 98444d3dd975653a4a970ecc0dfc30918da92f60 (diff) | |
| parent | f6e10b865c3ea56bdaa8c6ecfee313b997900dbb (diff) | |
Merge branch 'master' of ../mmc
Diffstat (limited to 'kernel/stacktrace.c')
| -rw-r--r-- | kernel/stacktrace.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/kernel/stacktrace.c b/kernel/stacktrace.c index 94b527ef1d1e..eb212f8f8bc8 100644 --- a/kernel/stacktrace.c +++ b/kernel/stacktrace.c | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> | 6 | * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> |
| 7 | */ | 7 | */ |
| 8 | #include <linux/sched.h> | 8 | #include <linux/sched.h> |
| 9 | #include <linux/kernel.h> | ||
| 9 | #include <linux/module.h> | 10 | #include <linux/module.h> |
| 10 | #include <linux/kallsyms.h> | 11 | #include <linux/kallsyms.h> |
| 11 | #include <linux/stacktrace.h> | 12 | #include <linux/stacktrace.h> |
| @@ -24,3 +25,13 @@ void print_stack_trace(struct stack_trace *trace, int spaces) | |||
| 24 | } | 25 | } |
| 25 | EXPORT_SYMBOL_GPL(print_stack_trace); | 26 | EXPORT_SYMBOL_GPL(print_stack_trace); |
| 26 | 27 | ||
| 28 | /* | ||
| 29 | * Architectures that do not implement save_stack_trace_tsk get this | ||
| 30 | * weak alias and a once-per-bootup warning (whenever this facility | ||
| 31 | * is utilized - for example by procfs): | ||
| 32 | */ | ||
| 33 | __weak void | ||
| 34 | save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace) | ||
| 35 | { | ||
| 36 | WARN_ONCE(1, KERN_INFO "save_stack_trace_tsk() not implemented yet.\n"); | ||
| 37 | } | ||
