Changeset 48442 in vbox for trunk/src/VBox
- Timestamp:
- Sep 11, 2013 5:36:23 PM (11 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r48370 r48442 1486 1486 { 1487 1487 AssertMsgFailed(("Illegal enabling of paging with CS.u1Long = 1!!\n")); 1488 return VERR_EM_INTERPRETER; /* @todo generate #GP(0) */1488 return VERR_EM_INTERPRETER; /** @todo generate #GP(0) */ 1489 1489 } 1490 1490 … … 1493 1493 { 1494 1494 AssertMsgFailed(("Illegal enabling of paging with PAE disabled!!\n")); 1495 return VERR_EM_INTERPRETER; /* @todo generate #GP(0) */1495 return VERR_EM_INTERPRETER; /** @todo generate #GP(0) */ 1496 1496 } 1497 1497 msrEFER |= MSR_K6_EFER_LMA; … … 1502 1502 { 1503 1503 msrEFER &= ~MSR_K6_EFER_LMA; 1504 /* @todo Do we need to cut off rip here? High dword of rip is undefined, so it shouldn't really matter. */1504 /** @todo Do we need to cut off rip here? High dword of rip is undefined, so it shouldn't really matter. */ 1505 1505 } 1506 1506 CPUMSetGuestEFER(pVCpu, msrEFER); -
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r46420 r48442 529 529 } 530 530 531 /* We need to wa itup the target CPU. */531 /* We need to wake up the target CPU. */ 532 532 if (VMMGetCpuId(pVM) != idCpu) 533 533 {
Note:
See TracChangeset
for help on using the changeset viewer.