mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[NTOS:KE]
- Load LDT on context switch if required. CORE-11511 #resolve svn path=/trunk/; revision=71967
This commit is contained in:
@@ -34,9 +34,17 @@ KiSwapProcess(IN PKPROCESS NewProcess,
|
||||
/* Check for new LDT */
|
||||
if (NewProcess->LdtDescriptor.LimitLow != OldProcess->LdtDescriptor.LimitLow)
|
||||
{
|
||||
/* Not handled yet */
|
||||
UNIMPLEMENTED_DBGBREAK();
|
||||
return;
|
||||
if (NewProcess->LdtDescriptor.LimitLow)
|
||||
{
|
||||
KeSetGdtSelector(KGDT_LDT,
|
||||
((PULONG)&NewProcess->LdtDescriptor)[0],
|
||||
((PULONG)&NewProcess->LdtDescriptor)[1]);
|
||||
Ke386SetLocalDescriptorTable(KGDT_LDT);
|
||||
}
|
||||
else
|
||||
{
|
||||
Ke386SetLocalDescriptorTable(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Update CR3 */
|
||||
|
||||
@@ -167,7 +167,7 @@ BOOLEAN PspIsDescriptorValid(PLDT_ENTRY ldt_entry)
|
||||
if ((Base + SegLimit > (ULONG_PTR) MmHighestUserAddress) ||
|
||||
(Base > Base+SegLimit))
|
||||
{
|
||||
DPRINT1("WARNING: Windows would mark this descriptor invalid!");
|
||||
DPRINT1("WARNING: Windows would mark this descriptor invalid!\n");
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -345,8 +345,17 @@ KiSwapContextExit(IN PKTHREAD OldThread,
|
||||
/* Check if there is a different LDT */
|
||||
if (*(PULONGLONG)&OldProcess->LdtDescriptor != *(PULONGLONG)&NewProcess->LdtDescriptor)
|
||||
{
|
||||
DPRINT1("LDT switch not implemented\n");
|
||||
ASSERT(FALSE);
|
||||
if (NewProcess->LdtDescriptor.LimitLow)
|
||||
{
|
||||
KeSetGdtSelector(KGDT_LDT,
|
||||
((PULONG)&NewProcess->LdtDescriptor)[0],
|
||||
((PULONG)&NewProcess->LdtDescriptor)[1]);
|
||||
Ke386SetLocalDescriptorTable(KGDT_LDT);
|
||||
}
|
||||
else
|
||||
{
|
||||
Ke386SetLocalDescriptorTable(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Switch address space and flush TLB */
|
||||
|
||||
Reference in New Issue
Block a user