2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _S390_BUG_H
|
|
|
|
#define _S390_BUG_H
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#ifdef CONFIG_BUG
|
2006-03-24 12:15:16 +01:00
|
|
|
|
2006-07-12 16:39:42 +02: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-17 00:20:36 +02:00
|
|
|
#define BUG() do { \
|
2006-03-24 12:15:16 +01:00
|
|
|
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
|
2006-07-12 16:39:42 +02:00
|
|
|
__do_illegal_op(); \
|
2005-04-17 00:20:36 +02:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define HAVE_ARCH_BUG
|
2005-05-01 17:59:01 +02:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm-generic/bug.h>
|
|
|
|
|
|
|
|
#endif
|