diff options
Diffstat (limited to 'arch/sh/kernel/traps.c')
| -rw-r--r-- | arch/sh/kernel/traps.c | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/sh/kernel/traps.c b/arch/sh/kernel/traps.c index 3762d9dc2046..ec110157992d 100644 --- a/arch/sh/kernel/traps.c +++ b/arch/sh/kernel/traps.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/kallsyms.h> | 19 | #include <linux/kallsyms.h> |
| 20 | #include <linux/io.h> | 20 | #include <linux/io.h> |
| 21 | #include <linux/debug_locks.h> | 21 | #include <linux/debug_locks.h> |
| 22 | #include <linux/limits.h> | ||
| 22 | #include <asm/system.h> | 23 | #include <asm/system.h> |
| 23 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
| 24 | 25 | ||
| @@ -129,6 +130,40 @@ static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err) | |||
| 129 | return -EFAULT; | 130 | return -EFAULT; |
| 130 | } | 131 | } |
| 131 | 132 | ||
| 133 | #ifdef CONFIG_BUG | ||
| 134 | #ifdef CONFIG_DEBUG_BUGVERBOSE | ||
| 135 | static inline void do_bug_verbose(struct pt_regs *regs) | ||
| 136 | { | ||
| 137 | struct bug_frame f; | ||
| 138 | long len; | ||
| 139 | |||
| 140 | if (__copy_from_user(&f, (const void __user *)regs->pc, | ||
| 141 | sizeof(struct bug_frame))) | ||
| 142 | return; | ||
| 143 | |||
| 144 | len = __strnlen_user(f.file, PATH_MAX) - 1; | ||
| 145 | if (unlikely(len < 0 || len >= PATH_MAX)) | ||
| 146 | f.file = "<bad filename>"; | ||
| 147 | len = __strnlen_user(f.func, PATH_MAX) - 1; | ||
| 148 | if (unlikely(len < 0 || len >= PATH_MAX)) | ||
| 149 | f.func = "<bad function>"; | ||
| 150 | |||
| 151 | printk(KERN_ALERT "kernel BUG in %s() at %s:%d!\n", | ||
| 152 | f.func, f.file, f.line); | ||
| 153 | } | ||
| 154 | #else | ||
| 155 | static inline void do_bug_verbose(struct pt_regs *regs) | ||
| 156 | { | ||
| 157 | } | ||
| 158 | #endif /* CONFIG_DEBUG_BUGVERBOSE */ | ||
| 159 | #endif /* CONFIG_BUG */ | ||
| 160 | |||
| 161 | void handle_BUG(struct pt_regs *regs) | ||
| 162 | { | ||
| 163 | do_bug_verbose(regs); | ||
| 164 | die("Kernel BUG", regs, TRAPA_BUG_OPCODE & 0xff); | ||
| 165 | } | ||
| 166 | |||
| 132 | /* | 167 | /* |
| 133 | * handle an instruction that does an unaligned memory access by emulating the | 168 | * handle an instruction that does an unaligned memory access by emulating the |
| 134 | * desired behaviour | 169 | * desired behaviour |
