Lines Matching refs:cr_new
49 unsigned long cr, cr_new; in update_cr_regs() local
52 cr_new = cr; in update_cr_regs()
55 cr_new |= (1UL << 55); in update_cr_regs()
57 cr_new &= ~(1UL << 55); in update_cr_regs()
61 cr_new &= ~(1UL << 17); in update_cr_regs()
63 cr_new |= (1UL << 17); in update_cr_regs()
65 if (cr_new != cr) in update_cr_regs()
66 __ctl_load(cr_new, 0, 0); in update_cr_regs()
70 cr_new = cr & ~3UL; in update_cr_regs()
74 cr_new |= 1UL; in update_cr_regs()
76 cr_new |= 2UL; in update_cr_regs()
78 if (cr_new != cr) in update_cr_regs()
79 __ctl_load(cr_new, 2, 2); in update_cr_regs()