]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - lib/dump_stack.c
notifier-error-inject: fix module names in Kconfig
[mirror_ubuntu-artful-kernel.git] / lib / dump_stack.c
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);