Lines Matching full:msr
44 pr_info(" msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n", in show_regs()
45 regs->msr, regs->ear, regs->esr, regs->fsr); in show_regs()
72 local_save_flags(childregs->msr); in copy_thread()
73 ti->cpu_context.msr = childregs->msr & ~MSR_IE; in copy_thread()
83 childregs->msr |= MSR_UMS; in copy_thread()
87 * before enabling VM. This MSR will be restored in switch_to and in copy_thread()
91 * compose the right MSR for RETURN(). It will work for switch_to also in copy_thread()
94 * right now MSR is a copy of parent one */ in copy_thread()
95 childregs->msr &= ~MSR_EIP; in copy_thread()
96 childregs->msr |= MSR_IE; in copy_thread()
97 childregs->msr &= ~MSR_VM; in copy_thread()
98 childregs->msr |= MSR_VMS; in copy_thread()
99 childregs->msr |= MSR_EE; /* exceptions will be enabled*/ in copy_thread()
101 ti->cpu_context.msr = (childregs->msr|MSR_VM); in copy_thread()
102 ti->cpu_context.msr &= ~MSR_UMS; /* switch_to to kernel mode */ in copy_thread()
103 ti->cpu_context.msr &= ~MSR_IE; in copy_thread()
128 regs->msr |= MSR_UMS; in start_thread()
129 regs->msr &= ~MSR_VM; in start_thread()