Lines Matching full:exception
2 * HW exception handling
64 die("Exception in kernel mode", regs, signr); in _exception()
77 pr_warn("Exception %02x in %s mode, FSR=%08x PC=%08x ESR=%08x\n", in full_exception()
85 pr_debug("Illegal opcode exception in user mode\n"); in full_exception()
89 pr_warn("Illegal opcode exception in kernel mode.\n"); in full_exception()
90 die("opcode exception", regs, SIGBUS); in full_exception()
94 pr_debug("Instruction bus error exception in user mode\n"); in full_exception()
98 pr_warn("Instruction bus error exception in kernel mode.\n"); in full_exception()
99 die("bus exception", regs, SIGBUS); in full_exception()
103 pr_debug("Data bus error exception in user mode\n"); in full_exception()
107 pr_warn("Data bus error exception in kernel mode.\n"); in full_exception()
108 die("bus exception", regs, SIGBUS); in full_exception()
112 pr_debug("Divide by zero exception in user mode\n"); in full_exception()
116 pr_warn("Divide by zero exception in kernel mode.\n"); in full_exception()
117 die("Divide by zero exception", regs, SIGBUS); in full_exception()
120 pr_debug("FPU exception\n"); in full_exception()
121 /* IEEE FP exception */ in full_exception()
138 pr_debug("Privileged exception\n"); in full_exception()
143 /* FIXME what to do in unexpected exception */ in full_exception()
144 pr_warn("Unexpected exception %02x PC=%08x in %s mode\n", in full_exception()