Revision 5fe858b5b76be3cb1b1cf3ea40b7ca6706f8329c authored by Linus Torvalds on 30 September 2011, 02:24:33 UTC, committed by Linus Torvalds on 30 September 2011, 02:24:33 UTC
* git://github.com/davem330/sparc:
  sparc64: Force the execute bit in OpenFirmware's translation entries.
  sparc: Make '-p' boot option meaningful again.
  sparc, exec: remove redundant addr_limit assignment
  sparc64: Future proof Niagara cpu detection.
2 parent s 8e8e500 + f4142cb
Raw File
dump_stack.c
/*
 * Provide a default dump_stack() function for architectures
 * which don't implement their own.
 */

#include <linux/kernel.h>
#include <linux/module.h>

void dump_stack(void)
{
	printk(KERN_NOTICE
		"This architecture does not implement dump_stack()\n");
}

EXPORT_SYMBOL(dump_stack);
back to top