Lines Matching full:exception
2 * HW exception handling
64 die("Exception in kernel mode", regs, signr); in _exception()
75 pr_warn("Exception %02x in %s mode, FSR=%08x PC=%08x ESR=%08x\n", in full_exception()
83 pr_debug("Illegal opcode exception in user mode\n"); in full_exception()
87 pr_warn("Illegal opcode exception in kernel mode.\n"); in full_exception()
88 die("opcode exception", regs, SIGBUS); in full_exception()
92 pr_debug("Instruction bus error exception in user mode\n"); in full_exception()
96 pr_warn("Instruction bus error exception in kernel mode.\n"); in full_exception()
97 die("bus exception", regs, SIGBUS); in full_exception()
101 pr_debug("Data bus error exception in user mode\n"); in full_exception()
105 pr_warn("Data bus error exception in kernel mode.\n"); in full_exception()
106 die("bus exception", regs, SIGBUS); in full_exception()
110 pr_debug("Divide by zero exception in user mode\n"); in full_exception()
114 pr_warn("Divide by zero exception in kernel mode.\n"); in full_exception()
115 die("Divide by zero exception", regs, SIGBUS); in full_exception()
118 pr_debug("FPU exception\n"); in full_exception()
119 /* IEEE FP exception */ in full_exception()
134 pr_debug("Privileged exception\n"); in full_exception()
138 /* FIXME what to do in unexpected exception */ in full_exception()
139 pr_warn("Unexpected exception %02x PC=%08x in %s mode\n", in full_exception()