We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e754f4d commit dd152f7Copy full SHA for dd152f7
arch/powerpc/kernel/exceptions-64s.S
@@ -1861,8 +1861,6 @@ END_FTR_SECTION_IFSET(CPU_FTR_REAL_LE)
1861
mtctr r10
1862
bctr
1863
.else
1864
- li r10,MSR_RI
1865
- mtmsrd r10,1 /* Set RI (EE=0) */
1866
#ifdef CONFIG_RELOCATABLE
1867
__LOAD_HANDLER(r10, system_call_common)
1868
arch/powerpc/kernel/interrupt_64.S
@@ -283,9 +283,9 @@ END_BTB_FLUSH_SECTION
283
* trace_hardirqs_off().
284
*/
285
li r11,IRQS_ALL_DISABLED
286
- li r12,PACA_IRQ_HARD_DIS
+ li r12,-1 /* Set MSR_EE and MSR_RI */
287
stb r11,PACAIRQSOFTMASK(r13)
288
- stb r12,PACAIRQHAPPENED(r13)
+ mtmsrd r12,1
289
290
/* Calling convention has r9 = orig r0, r10 = regs */
291
mr r9,r0
0 commit comments