Be more conservative about re-enabling interrupts during trap processing

until atomic issues are fully sorted.

Approved by:  benno
This commit is contained in:
Peter Grehan 2003-01-08 12:20:46 +00:00
parent b744fccd8a
commit 9e283cf9a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108943
2 changed files with 2 additions and 2 deletions

View file

@ -109,9 +109,9 @@ powerpc_interrupt(struct trapframe *framep)
*/
#if 0
printf("powerpc_interrupt: got trap\n");
#endif
mtmsr(mfmsr() | PSL_EE);
isync();
#endif
trap(framep);
}
}

View file

@ -109,9 +109,9 @@ powerpc_interrupt(struct trapframe *framep)
*/
#if 0
printf("powerpc_interrupt: got trap\n");
#endif
mtmsr(mfmsr() | PSL_EE);
isync();
#endif
trap(framep);
}
}