mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 12:26:09 +00:00
[NTOS/KE]
- Remove VirtualBox SYSENTER-hack added in r50991. - Bring back NT-compatible SYSENTER support detection changed in r50991. svn path=/trunk/; revision=51120
This commit is contained in:
parent
4fb00286d5
commit
cc6c8e90e2
1 changed files with 3 additions and 10 deletions
|
@ -303,17 +303,10 @@ KiGetFeatureBits(VOID)
|
|||
/* Remove support for correct PTE support. */
|
||||
FeatureBits &= ~KF_WORKING_PTE;
|
||||
}
|
||||
|
||||
/* Virtualbox claims to have no SYSENTER support,
|
||||
* which is false for processors >= Pentium Pro */
|
||||
if(Prcb->CpuType >= 6)
|
||||
{
|
||||
Reg[3] |= 0x800;
|
||||
}
|
||||
|
||||
/* Check if the CPU is too old to support SYSENTER,
|
||||
* See Intel CPUID instruction manual for details*/
|
||||
if ((Reg[0] & 0x0FFF3FFF) < 0x00000633)
|
||||
/* Check if the CPU is too old to support SYSENTER */
|
||||
if ((Prcb->CpuType < 6) ||
|
||||
((Prcb->CpuType == 6) && (Prcb->CpuStep < 0x0303)))
|
||||
{
|
||||
/* Disable it */
|
||||
Reg[3] &= ~0x800;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue