mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[NTOS:KE] Do not call MmSetPageProtect for the Pentium Lock Errata
CORE-17589
This commit is contained in:
parent
9f549dba1e
commit
0395049986
1 changed files with 5 additions and 1 deletions
|
@ -1089,6 +1089,7 @@ KiI386PentiumLockErrataFixup(VOID)
|
||||||
{
|
{
|
||||||
KDESCRIPTOR IdtDescriptor = {0, 0, 0};
|
KDESCRIPTOR IdtDescriptor = {0, 0, 0};
|
||||||
PKIDTENTRY NewIdt, NewIdt2;
|
PKIDTENTRY NewIdt, NewIdt2;
|
||||||
|
PMMPTE PointerPte;
|
||||||
|
|
||||||
/* Allocate memory for a new IDT */
|
/* Allocate memory for a new IDT */
|
||||||
NewIdt = ExAllocatePool(NonPagedPool, 2 * PAGE_SIZE);
|
NewIdt = ExAllocatePool(NonPagedPool, 2 * PAGE_SIZE);
|
||||||
|
@ -1114,7 +1115,10 @@ KiI386PentiumLockErrataFixup(VOID)
|
||||||
_enable();
|
_enable();
|
||||||
|
|
||||||
/* Set the first 7 entries as read-only to produce a fault */
|
/* Set the first 7 entries as read-only to produce a fault */
|
||||||
MmSetPageProtect(NULL, NewIdt, PAGE_READONLY);
|
PointerPte = MiAddressToPte(NewIdt);
|
||||||
|
ASSERT(PointerPte->u.Hard.Write == 1);
|
||||||
|
PointerPte->u.Hard.Write = 0;
|
||||||
|
KeInvalidateTlbEntry(NewIdt);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
|
|
Loading…
Reference in a new issue