Changeset 43769 in vbox for trunk/src/VBox/VMM/VMMR0/HWVMXR0.h
- Timestamp:
- Oct 29, 2012 3:26:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.h
r43700 r43769 216 216 /* Must override this or else VT-x will fail with invalid guest state errors. */ \ 217 217 /* DPL=3, present, code/data, r/w/accessed. */ \ 218 /** @todo we shouldn't have to do this, if it is not 0xf3 it means we screwed up elsewhere (recompiler). */ \ 219 /** @todo VT-x docs explicitly mentions 0xF3. Why not just val = 0xf3 ??. */ \ 218 220 val = (pCtx->reg.Attr.u & ~0xFF) | 0xF3; \ 219 221 } \ 220 222 else \ 221 223 if ( CPUMIsGuestInRealModeEx(pCtx) \ 222 && !pVM->hm.s.vmx.fUnrestrictedGuest) \224 && !pVM->hm.s.vmx.fUnrestrictedGuest) \ 223 225 { \ 226 /** @todo shouldn't the 'if' condition above check for 'pRealModeTSS' ? */ \ 224 227 /* Must override this or else VT-x will fail with invalid guest state errors. */ \ 225 228 /* DPL=3, present, code/data, r/w/accessed. */ \
Note:
See TracChangeset
for help on using the changeset viewer.