dump_stack: consolidate dump_stack() implementations and unify their behaviors
authorTejun Heo <tj@kernel.org>
Tue, 30 Apr 2013 22:27:12 +0000 (15:27 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 1 May 2013 00:04:02 +0000 (17:04 -0700)
Both dump_stack() and show_stack() are currently implemented by each
architecture.  show_stack(NULL, NULL) dumps the backtrace for the
current task as does dump_stack().  On some archs, dump_stack() prints
extra information - pid, utsname and so on - in addition to the
backtrace while the two are identical on other archs.

The usages in arch-independent code of the two functions indicate
show_stack(NULL, NULL) should print out bare backtrace while
dump_stack() is used for debugging purposes when something went wrong,
so it does make sense to print additional information on the task which
triggered dump_stack().

There's no reason to require archs to implement two separate but mostly
identical functions.  It leads to unnecessary subtle information.

This patch expands the dummy fallback dump_stack() implementation in
lib/dump_stack.c such that it prints out debug information (taken from
x86) and invokes show_stack(NULL, NULL) and drops arch-specific
dump_stack() implementations in all archs except blackfin.  Blackfin's
dump_stack() does something wonky that I don't understand.

Debug information can be printed separately by calling
dump_stack_print_info() so that arch-specific dump_stack()
implementation can still emit the same debug information.  This is used
in blackfin.

This patch brings the following behavior changes.

* On some archs, an extra level in backtrace for show_stack() could be
  printed.  This is because the top frame was determined in
  dump_stack() on those archs while generic dump_stack() can't do that
  reliably.  It can be compensated by inlining dump_stack() but not
  sure whether that'd be necessary.

* Most archs didn't use to print debug info on dump_stack().  They do
  now.

An example WARN dump follows.

 WARNING: at kernel/workqueue.c:4841 init_workqueues+0x35/0x505()
 Hardware name: empty
 Modules linked in:
 CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.9.0-rc1-work+ #9
  0000000000000009 ffff88007c861e08 ffffffff81c614dc ffff88007c861e48
  ffffffff8108f50f ffffffff82228240 0000000000000040 ffffffff8234a03c
  0000000000000000 0000000000000000 0000000000000000 ffff88007c861e58
 Call Trace:
  [<ffffffff81c614dc>] dump_stack+0x19/0x1b
  [<ffffffff8108f50f>] warn_slowpath_common+0x7f/0xc0
  [<ffffffff8108f56a>] warn_slowpath_null+0x1a/0x20
  [<ffffffff8234a071>] init_workqueues+0x35/0x505
  ...

v2: CPU number added to the generic debug info as requested by s390
    folks and dropped the s390 specific dump_stack().  This loses %ksp
    from the debug message which the maintainers think isn't important
    enough to keep the s390-specific dump_stack() implementation.

    dump_stack_print_info() is moved to kernel/printk.c from
    lib/dump_stack.c.  Because linkage is per objecct file,
    dump_stack_print_info() living in the same lib file as generic
    dump_stack() means that archs which implement custom dump_stack()
    - at this point, only blackfin - can't use dump_stack_print_info()
    as that will bring in the generic version of dump_stack() too.  v1
    The v1 patch broke build on blackfin due to this issue.  The build
    breakage was reported by Fengguang Wu.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Vineet Gupta <vgupta@synopsys.com>
Acked-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Vineet Gupta <vgupta@synopsys.com>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com> [s390 bits]
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Fengguang Wu <fengguang.wu@intel.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Richard Kuo <rkuo@codeaurora.org> [hexagon bits]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
33 files changed:
arch/alpha/kernel/traps.c
arch/arc/kernel/stacktrace.c
arch/arm/kernel/traps.c
arch/arm64/kernel/traps.c
arch/avr32/kernel/process.c
arch/blackfin/kernel/dumpstack.c
arch/c6x/kernel/traps.c
arch/cris/kernel/traps.c
arch/frv/kernel/traps.c
arch/h8300/kernel/traps.c
arch/hexagon/kernel/traps.c
arch/ia64/kernel/process.c
arch/m32r/kernel/traps.c
arch/m68k/kernel/traps.c
arch/metag/kernel/traps.c
arch/microblaze/kernel/traps.c
arch/mips/kernel/traps.c
arch/mn10300/kernel/traps.c
arch/openrisc/kernel/traps.c
arch/parisc/kernel/traps.c
arch/powerpc/kernel/process.c
arch/s390/kernel/dumpstack.c
arch/score/kernel/traps.c
arch/sh/kernel/dumpstack.c
arch/sparc/kernel/process_32.c
arch/sparc/kernel/traps_64.c
arch/um/kernel/sysrq.c
arch/unicore32/kernel/traps.c
arch/x86/kernel/dumpstack.c
arch/xtensa/kernel/traps.c
include/linux/printk.h
kernel/printk.c
lib/dump_stack.c

index 4037461a649347e46eac68980be78f22935ea01f..affccb959a9e8c9a28977883cd9e5b916dd0b679 100644 (file)
@@ -169,13 +169,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        dik_show_trace(sp);
 }
 
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 void
 die_if_kernel(char * str, struct pt_regs *regs, long err, unsigned long *r9_15)
 {
index a63ff842564b3c866c4df70da5a8b5903d21c12c..ca0207b9d5b6f14d668be5f68735b52ccde1f54d 100644 (file)
@@ -220,13 +220,6 @@ void show_stack(struct task_struct *tsk, unsigned long *sp)
        show_stacktrace(tsk, NULL);
 }
 
-/* Expected by Rest of kernel code */
-void dump_stack(void)
-{
-       show_stacktrace(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
-
 /* Another API expected by schedular, shows up in "ps" as Wait Channel
  * Ofcourse just returning schedule( ) would be pointless so unwind until
  * the function is not in schedular code
index 1c089119b2d7cd3f8d8847facc709e1a9078235b..18b32e8e4497f4c1966f43ac6fbb4963315fb968 100644 (file)
@@ -204,13 +204,6 @@ static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
 }
 #endif
 
-void dump_stack(void)
-{
-       dump_backtrace(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 void show_stack(struct task_struct *tsk, unsigned long *sp)
 {
        dump_backtrace(NULL, tsk);
index b3c5f628bdb45490bbf863e5c195f81bc74938c6..61d7dd29f756c300926410cef60ab523a5a7a7b1 100644 (file)
@@ -167,13 +167,6 @@ static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
        }
 }
 
-void dump_stack(void)
-{
-       dump_backtrace(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 void show_stack(struct task_struct *tsk, unsigned long *sp)
 {
        dump_backtrace(NULL, tsk);
index 073c3c2fa521a4c680e175144885a07c5daff28b..89a8017e8ca6939b2252c0e68be94989e7e1424b 100644 (file)
@@ -204,14 +204,6 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
        show_stack_log_lvl(tsk, (unsigned long)stack, NULL, "");
 }
 
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_trace_log_lvl(current, &stack, NULL, "");
-}
-EXPORT_SYMBOL(dump_stack);
-
 static const char *cpu_modes[] = {
        "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1",
        "Interrupt level 2", "Interrupt level 3", "Exception", "NMI"
index 5cfbaa2982116d3875fbeeeff902cddb7865b491..95ba6d9e9a3d80f032e9a35276865b6905530c01 100644 (file)
@@ -168,6 +168,7 @@ void dump_stack(void)
 #endif
        trace_buffer_save(tflags);
        dump_bfin_trace_buffer();
+       dump_stack_print_info(KERN_DEFAULT);
        show_stack(current, &stack);
        trace_buffer_restore(tflags);
 }
index 1be74e5b47885015b908fa4954d1113a9651d2cc..d0b96ef25c17d463a1ca8f29412b410259acbf3a 100644 (file)
@@ -67,15 +67,6 @@ void show_regs(struct pt_regs *regs)
        pr_err("A31: %08lx  B31: %08lx\n", regs->a31, regs->b31);
 }
 
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_stack(current, &stack);
-}
-EXPORT_SYMBOL(dump_stack);
-
-
 void die(char *str, struct pt_regs *fp, int nr)
 {
        console_verbose();
index a11ad3229f8c4dc50474ed0af99a1cbcb4d1f21b..0ffda73734f538d762a5e8a996b2d5e0d669fb7c 100644 (file)
@@ -146,13 +146,6 @@ show_stack(void)
 }
 #endif
 
-void
-dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
-
 void
 set_nmi_handler(void (*handler)(struct pt_regs *))
 {
index 5cfd1420b09141dd0e270af0197dbf8e63836171..cfcd802d6f9ce5c9ade07062075e0bd9420fce4b 100644 (file)
@@ -466,17 +466,6 @@ asmlinkage void compound_exception(unsigned long esfr1,
        BUG();
 } /* end compound_exception() */
 
-/*****************************************************************************/
-/*
- * The architecture-independent backtrace generator
- */
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 void show_stack(struct task_struct *task, unsigned long *sp)
 {
 }
index 7833aa3e7c7dd2b845de79f1c7b7201a5521ea09..cfe494dbe3da4eb65535877f3743ea817ed4b806 100644 (file)
@@ -164,10 +164,3 @@ void show_trace_task(struct task_struct *tsk)
 {
        show_stack(tsk,(unsigned long *)tsk->thread.esp0);
 }
-
-void dump_stack(void)
-{
-       show_stack(NULL,NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
index be5e2dd9c9d3076fc88a11a9b3f4bf17b97fdb75..cc2171b2aa04ce7f46b297f92e85673d38dbf3e1 100644 (file)
@@ -191,14 +191,6 @@ void show_stack(struct task_struct *task, unsigned long *fp)
        do_show_stack(task, fp, 0);
 }
 
-void dump_stack(void)
-{
-       unsigned long *fp;
-       asm("%0 = r30" : "=r" (fp));
-       show_stack(current, fp);
-}
-EXPORT_SYMBOL(dump_stack);
-
 int die(const char *str, struct pt_regs *regs, long err)
 {
        static struct {
index a26fc640e4cec5a80709de491cc12084d5cb3acd..182bd64cc726851c311b9358cc7496313b7a2fb9 100644 (file)
@@ -95,14 +95,6 @@ show_stack (struct task_struct *task, unsigned long *sp)
        }
 }
 
-void
-dump_stack (void)
-{
-       show_stack(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 void
 show_regs (struct pt_regs *regs)
 {
index 9fe3467a51339a8565bed472d8444fc519dcc3de..a7a424f852e48f12226d54af21e9073b9d43de3e 100644 (file)
@@ -167,15 +167,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        show_trace(task, sp);
 }
 
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_trace(current, &stack);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 static void show_registers(struct pt_regs *regs)
 {
        int i = 0;
index f32ab22e7ed3e3d74016ce24849bc14ddb2189d4..88fcd8c70e7bed8ac311a718aa9c643a2f3370a9 100644 (file)
@@ -991,18 +991,6 @@ void show_stack(struct task_struct *task, unsigned long *stack)
        show_trace(stack);
 }
 
-/*
- * The architecture-independent backtrace generator
- */
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_trace(&stack);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 /*
  * The vector number returned in the frame pointer may also contain
  * the "fs" (Fault Status) bits on ColdFire. These are in the bottom
index 8961f247b50024d1e6975e0dfd376813b5b1fbe5..2ceeaae5b1992e11a731c6eba9450a8dece9aeb3 100644 (file)
@@ -987,9 +987,3 @@ void show_stack(struct task_struct *tsk, unsigned long *sp)
 
        show_trace(tsk, sp, NULL);
 }
-
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
index 30e6b5004a6a05310df22c445f542107af3190fe..cb619533a19270bcb12f326188149dc055bccfd7 100644 (file)
@@ -75,9 +75,3 @@ void show_stack(struct task_struct *task, unsigned long *sp)
 
        debug_show_held_locks(task);
 }
-
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
index c3abb88170fc01a6a4cfeeda10bd7c3f144707ec..b512b28cf786b981ca6715b2e5bcc2526dbb5f12 100644 (file)
@@ -206,19 +206,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        show_stacktrace(task, &regs);
 }
 
-/*
- * The architecture-independent dump_stack generator
- */
-void dump_stack(void)
-{
-       struct pt_regs regs;
-
-       prepare_frametrace(&regs);
-       show_backtrace(current, &regs);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 static void show_code(unsigned int __user *pc)
 {
        long i;
index b900e5afa0aefae7969666fbb1cc9cf2e77d5994..a7a987c7954f0a8abeecb8016b2f0379dbf28bf8 100644 (file)
@@ -293,17 +293,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        show_trace(sp);
 }
 
-/*
- * the architecture-independent dump_stack generator
- */
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_stack(current, &stack);
-}
-EXPORT_SYMBOL(dump_stack);
-
 /*
  * dump the register file in the specified exception frame
  */
index 5cce396016d0c72555c8222293790ec3aa60b271..3d3f6062f49ccee5ae47ec0505101fad7f5d147d 100644 (file)
@@ -105,17 +105,6 @@ void show_trace_task(struct task_struct *tsk)
         */
 }
 
-/*
- * The architecture-independent backtrace generator
- */
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_stack(current, &stack);
-}
-EXPORT_SYMBOL(dump_stack);
-
 void show_registers(struct pt_regs *regs)
 {
        int i;
index aeb8f8f2c07a57c3d677d1c454ae6b032959a009..e64cf5f09b626fa98f3eddb687c36f97a171a8c5 100644 (file)
@@ -158,14 +158,6 @@ void show_regs(struct pt_regs *regs)
        }
 }
 
-
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 static void do_show_stack(struct unwind_frame_info *info)
 {
        int i = 1;
index 16e77a81ab4f29d5090b3f65b600d738fe6ed9cf..624d44bb44dc111ba10e4df3170ab8a02ba07d7d 100644 (file)
@@ -1362,12 +1362,6 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
        } while (count++ < kstack_depth_to_print);
 }
 
-void dump_stack(void)
-{
-       show_stack(current, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
-
 #ifdef CONFIG_PPC64
 /* Called with hard IRQs off */
 void __ppc64_runlatch_on(void)
index 03dce39d01ee94452ba4750b7b4fe2c3d93006d0..2f1f639d1a3dbe33b7eaad64ebd127f78d291e77 100644 (file)
@@ -129,23 +129,6 @@ static void show_last_breaking_event(struct pt_regs *regs)
 #endif
 }
 
-/*
- * The architecture-independent dump_stack generator
- */
-void dump_stack(void)
-{
-       printk("CPU: %d %s %s %.*s\n",
-              task_thread_info(current)->cpu, print_tainted(),
-              init_utsname()->release,
-              (int)strcspn(init_utsname()->version, " "),
-              init_utsname()->version);
-       printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
-              current->comm, current->pid, current,
-              (void *) current->thread.ksp);
-       show_stack(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
-
 static inline int mask_bits(struct pt_regs *regs, unsigned long bits)
 {
        return (regs->psw.mask & bits) / ((~bits + 1) & bits);
index 0e46fb19a8481e16b30752556a72954f74edc41c..a38f435fba7b7b0a923fc4c2042e1da4444e2522 100644 (file)
@@ -149,16 +149,6 @@ static void show_registers(struct pt_regs *regs)
        printk(KERN_NOTICE "\n");
 }
 
-/*
- * The architecture-independent dump_stack generator
- */
-void dump_stack(void)
-{
-       show_stack(current_thread_info()->task,
-                  (long *) get_irq_regs()->regs[0]);
-}
-EXPORT_SYMBOL(dump_stack);
-
 void __die(const char *str, struct pt_regs *regs, const char *file,
        const char *func, unsigned long line)
 {
index 7617dc4129ac05acf7ade8e12f4791cda212d732..b959f55926043183a7abeff3c07d170717d7b923 100644 (file)
@@ -158,9 +158,3 @@ void show_stack(struct task_struct *tsk, unsigned long *sp)
                 (unsigned long)task_stack_page(tsk));
        show_trace(tsk, sp, NULL);
 }
-
-void dump_stack(void)
-{
-       show_stack(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
index 2be4214b39052f4d6a2f463f9d1f1964e4d978b6..dccf5f58d70f76e35e78ce5c6c7ca8c1809c2990 100644 (file)
@@ -164,13 +164,6 @@ void show_stack(struct task_struct *tsk, unsigned long *_ksp)
        printk("\n");
 }
 
-void dump_stack(void)
-{
-       show_stack(current, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 /*
  * Note: sparc64 has a pretty intricated thread_saved_pc, check it out.
  */
index 8d38ca97aa23c45c305d3ffcf820eda0dfb08790..b3f833ab90ebf0c95d5af6e216e58c06abc9c6a5 100644 (file)
@@ -2350,13 +2350,6 @@ void show_stack(struct task_struct *tsk, unsigned long *_ksp)
        } while (++count < 16);
 }
 
-void dump_stack(void)
-{
-       show_stack(current, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
 static inline struct reg_window *kernel_stack_up(struct reg_window *rw)
 {
        unsigned long fp = rw->ins[6];
index e562ff80409ab9f72f220ee5db5993ff8ec7ebcf..7d101a2a15410e2003407c111a1d8dbb033ce95b 100644 (file)
@@ -35,18 +35,6 @@ void show_trace(struct task_struct *task, unsigned long * stack)
 }
 #endif
 
-/*
- * stack dumps generator - this is used by arch-independent code.
- * And this is identical to i386 currently.
- */
-void dump_stack(void)
-{
-       unsigned long stack;
-
-       show_trace(current, &stack);
-}
-EXPORT_SYMBOL(dump_stack);
-
 /*Stolen from arch/i386/kernel/traps.c */
 static const int kstack_depth_to_print = 24;
 
index 0870b68d2ad9b32816c4ffb0e8366a3c6a0bec68..c54e32410eade658e747b01a264e1bf16ef0d2ba 100644 (file)
@@ -170,12 +170,6 @@ static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
                c_backtrace(fp, mode);
 }
 
-void dump_stack(void)
-{
-       dump_backtrace(NULL, NULL);
-}
-EXPORT_SYMBOL(dump_stack);
-
 void show_stack(struct task_struct *tsk, unsigned long *sp)
 {
        dump_backtrace(NULL, tsk);
index dd1a7c391c90e5246d6b1aa2c01f8ed65da6239f..deb6421c9e69d6cae32422e99fd6b77477762707 100644 (file)
@@ -191,24 +191,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        show_stack_log_lvl(task, NULL, sp, bp, "");
 }
 
-/*
- * The architecture-independent dump_stack generator
- */
-void dump_stack(void)
-{
-       unsigned long bp;
-       unsigned long stack;
-
-       bp = stack_frame(current, NULL);
-       printk("Pid: %d, comm: %.20s %s %s %.*s\n",
-               current->pid, current->comm, print_tainted(),
-               init_utsname()->release,
-               (int)strcspn(init_utsname()->version, " "),
-               init_utsname()->version);
-       show_trace(NULL, NULL, &stack, bp);
-}
-EXPORT_SYMBOL(dump_stack);
-
 static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
 static int die_owner = -1;
 static unsigned int die_nest_count;
index 923db5c15278fc530bc593fa321781a01ecd1c37..384b7c7c2f6da38838c254b5e4a11a2767cee13b 100644 (file)
@@ -481,14 +481,6 @@ void show_stack(struct task_struct *task, unsigned long *sp)
        show_trace(task, stack);
 }
 
-void dump_stack(void)
-{
-       show_stack(current, NULL);
-}
-
-EXPORT_SYMBOL(dump_stack);
-
-
 void show_code(unsigned int *pc)
 {
        long i;
index 4890fe62c0119db86d8cbc9345deea33468ef517..7ce1f878cf6ad2f538ec3b9185077593fa171626 100644 (file)
@@ -145,6 +145,7 @@ extern void wake_up_klogd(void);
 
 void log_buf_kexec_setup(void);
 void __init setup_log_buf(int early);
+void dump_stack_print_info(const char *log_lvl);
 #else
 static inline __printf(1, 0)
 int vprintk(const char *s, va_list args)
@@ -182,6 +183,10 @@ static inline void log_buf_kexec_setup(void)
 static inline void setup_log_buf(int early)
 {
 }
+
+static inline void dump_stack_print_info(const char *log_lvl)
+{
+}
 #endif
 
 extern void dump_stack(void) __cold;
index 376914e2869d8a132456dc9216a77f11586dc9bd..70b4b94a0eca74af9cec16d11b20417e17682ec6 100644 (file)
@@ -43,6 +43,7 @@
 #include <linux/rculist.h>
 #include <linux/poll.h>
 #include <linux/irq_work.h>
+#include <linux/utsname.h>
 
 #include <asm/uaccess.h>
 
@@ -2849,4 +2850,21 @@ void kmsg_dump_rewind(struct kmsg_dumper *dumper)
        raw_spin_unlock_irqrestore(&logbuf_lock, flags);
 }
 EXPORT_SYMBOL_GPL(kmsg_dump_rewind);
+
+/**
+ * dump_stack_print_info - print generic debug info for dump_stack()
+ * @log_lvl: log level
+ *
+ * Arch-specific dump_stack() implementations can use this function to
+ * print out the same debug information as the generic dump_stack().
+ */
+void dump_stack_print_info(const char *log_lvl)
+{
+       printk("%sCPU: %d PID: %d Comm: %.20s %s %s %.*s\n",
+              log_lvl, raw_smp_processor_id(), current->pid, current->comm,
+              print_tainted(), init_utsname()->release,
+              (int)strcspn(init_utsname()->version, " "),
+              init_utsname()->version);
+}
+
 #endif
index 42f4f55c9458eebbcff9ed271b12b03c09216e2e..53bad099ebd6310cf5dfac7dc7ae44fc85df82c8 100644 (file)
@@ -5,11 +5,16 @@
 
 #include <linux/kernel.h>
 #include <linux/export.h>
+#include <linux/sched.h>
 
+/**
+ * dump_stack - dump the current task information and its stack trace
+ *
+ * Architectures can override this implementation by implementing its own.
+ */
 void dump_stack(void)
 {
-       printk(KERN_NOTICE
-               "This architecture does not implement dump_stack()\n");
+       dump_stack_print_info(KERN_DEFAULT);
+       show_stack(NULL, NULL);
 }
-
 EXPORT_SYMBOL(dump_stack);