1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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);
}
}