Revision 26ae93c2dc7152463d319c28768f242a11a54620 authored by Boaz Harrosh on 02 February 2010, 13:56:53 UTC, committed by Boaz Harrosh on 04 August 2011, 19:35:18 UTC
Now that pnfs-osd has hit mainline we can remove exofs's
private header. (And the FIXME comment)

Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
1 parent 655b161
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