2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __ASM_X8664_BUG_H
|
|
|
|
#define __ASM_X8664_BUG_H 1
|
|
|
|
|
|
|
|
#include <linux/stringify.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tell the user there is some problem. The exception handler decodes
|
|
|
|
* this frame.
|
|
|
|
*/
|
|
|
|
struct bug_frame {
|
|
|
|
unsigned char ud2[2];
|
|
|
|
/* should use 32bit offset instead, but the assembler doesn't
|
|
|
|
like it */
|
|
|
|
char *filename;
|
|
|
|
unsigned short line;
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#ifdef CONFIG_BUG
|
2005-04-17 00:20:36 +02:00
|
|
|
#define HAVE_ARCH_BUG
|
|
|
|
#define BUG() \
|
|
|
|
asm volatile("ud2 ; .quad %c1 ; .short %c0" :: \
|
2005-04-17 00:24:51 +02:00
|
|
|
"i"(__LINE__), "i" (__stringify(__FILE__)))
|
2005-04-17 00:20:36 +02:00
|
|
|
void out_of_line_bug(void);
|
2005-05-25 21:31:28 +02:00
|
|
|
#else
|
|
|
|
static inline void out_of_line_bug(void) { }
|
2005-05-01 17:59:01 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
#include <asm-generic/bug.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|