diff options
Diffstat (limited to 'arch/m68k')
| -rw-r--r-- | arch/m68k/include/asm/bug.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/bug.h b/arch/m68k/include/asm/bug.h index b7e2bf1ba4a6..275dca1435bf 100644 --- a/arch/m68k/include/asm/bug.h +++ b/arch/m68k/include/asm/bug.h @@ -8,16 +8,19 @@  #ifndef CONFIG_SUN3  #define BUG() do { \  	pr_crit("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ +	barrier_before_unreachable(); \  	__builtin_trap(); \  } while (0)  #else  #define BUG() do { \  	pr_crit("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ +	barrier_before_unreachable(); \  	panic("BUG!"); \  } while (0)  #endif  #else  #define BUG() do { \ +	barrier_before_unreachable(); \  	__builtin_trap(); \  } while (0)  #endif  | 

