2005-04-16 18:20:36 -04:00
|
|
|
#ifndef _S390_BUG_H
|
|
|
|
#define _S390_BUG_H
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
2005-05-01 11:59:01 -04:00
|
|
|
#ifdef CONFIG_BUG
|
2006-03-24 06:15:16 -05:00
|
|
|
|
2006-07-12 10:39:42 -04:00
|
|
|
static inline __attribute__((noreturn)) void __do_illegal_op(void)
|
|
|
|
{
|
|
|
|
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
|
|
|
|
__builtin_trap();
|
|
|
|
#else
|
|
|
|
asm volatile(".long 0");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#define BUG() do { \
|
2006-03-24 06:15:16 -05:00
|
|
|
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
|
2006-07-12 10:39:42 -04:00
|
|
|
__do_illegal_op(); \
|
2005-04-16 18:20:36 -04:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
2005-05-01 11:59:01 -04:00
|
|
|
#endif
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
|
|
|
#endif
|