Lines Matching refs:trans_exc_code
78 unsigned long trans_exc_code; in get_fault_type() local
80 trans_exc_code = regs->int_parm_long & 3; in get_fault_type()
81 if (likely(trans_exc_code == 0)) { in get_fault_type()
91 if (trans_exc_code == 2) in get_fault_type()
93 if (trans_exc_code == 1) { in get_fault_type()
103 unsigned long trans_exc_code = regs->int_parm_long; in get_fault_address() local
105 return trans_exc_code & __FAIL_ADDR_MASK; in get_fault_address()
110 unsigned long trans_exc_code = regs->int_parm_long; in fault_is_write() local
112 return (trans_exc_code & store_indication) == 0x400; in fault_is_write()
536 unsigned long trans_exc_code; in do_protection_exception() local
540 trans_exc_code = regs->int_parm_long; in do_protection_exception()
553 if (unlikely(!(trans_exc_code & 4))) { in do_protection_exception()
557 if (unlikely(MACHINE_HAS_NX && (trans_exc_code & 0x80))) { in do_protection_exception()
558 regs->int_parm_long = (trans_exc_code & ~PAGE_MASK) | in do_protection_exception()