Revision 250541fca717a5c9b0d3710e737b2ca32ebb6fbc authored by Linus Torvalds on 15 April 2010, 01:46:03 UTC, committed by Linus Torvalds on 15 April 2010, 01:46:03 UTC
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6:
  SELinux: Reduce max avtab size to avoid page allocation failures
2 parent s 96e35b4 + 6c9ff10
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