ovl: split out ovl_get_indexdir() from ovl_fill_super()
[linux/fpc-iii.git] / arch / arc / include / asm / bug.h
blobea022d47896cef2761bbb8a147844c506f358621
1 /*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #ifndef _ASM_ARC_BUG_H
10 #define _ASM_ARC_BUG_H
12 #ifndef __ASSEMBLY__
14 #include <asm/ptrace.h>
16 struct task_struct;
18 void show_regs(struct pt_regs *regs);
19 void show_stacktrace(struct task_struct *tsk, struct pt_regs *regs);
20 void show_kernel_fault_diag(const char *str, struct pt_regs *regs,
21 unsigned long address);
22 void die(const char *str, struct pt_regs *regs, unsigned long address);
24 #define BUG() do { \
25 pr_warn("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
26 dump_stack(); \
27 } while (0)
29 #define HAVE_ARCH_BUG
31 #include <asm-generic/bug.h>
33 #endif /* !__ASSEMBLY__ */
35 #endif