- Timestamp:
- Aug 10, 2010 9:06:28 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r31489 r31512 2312 2312 */ 2313 2313 if (RT_LIKELY(pVCpu->cpum.s.Guest.cr0 & X86_CR0_PE)) 2314 cpl = pCtxCore->ssHid.Attr.n.u2Dpl; 2314 { 2315 if (!pCtxCore->eflags.Bits.u1VM) 2316 cpl = pCtxCore->ssHid.Attr.n.u2Dpl; 2317 else 2318 cpl = 3; /* REM doesn't set DPL=3 in V8086 mode. See #5130. */ 2319 } 2315 2320 else 2316 2321 cpl = 0; /* CPL set to 3 for VT-x real-mode emulation. */
Note:
See TracChangeset
for help on using the changeset viewer.