Changeset 51720 in vbox
- Timestamp:
- Jun 25, 2014 4:57:53 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94505
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r51301 r51720 903 903 case MSR_IA32_APICBASE: 904 904 { 905 /* See @bugref{7097} comment 6. */905 /* See @bugref{7097} comment #6. */ 906 906 PVM pVM = pVCpu->CTX_SUFF(pVM); 907 907 if (PDMHasApic(pVM)) -
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r51434 r51720 2486 2486 /* Update CR2 in case it's a page-fault. */ 2487 2487 /** @todo This should probably be done much earlier in IEM/PGM. See 2488 * @bugref{5653} comment #49. */2488 * @bugref{5653} comment #49. */ 2489 2489 if (fFlags & IEM_XCPT_FLAGS_CR2) 2490 2490 pCtx->cr2 = uCr2; -
trunk/src/VBox/VMM/VMMR3/DBGFCoreWrite.cpp
r48445 r51720 220 220 /* 221 221 * Yell loudly and bail if we are going to be writing a core file that is not compatible with 222 * both Solaris and the 64-bit ELF spec. which dictates 8-byte alignment. See @bugref{5211} comment 3.222 * both Solaris and the 64-bit ELF spec. which dictates 8-byte alignment. See @bugref{5211} comment #3. 223 223 */ 224 224 if (cchNameAlign - cchName > 3) … … 241 241 Elf64_Nhdr ElfNoteHdr; 242 242 RT_ZERO(ElfNoteHdr); 243 ElfNoteHdr.n_namesz = (Elf64_Word)cchName - 1; /* Again a discrepancy between ELF-64 and Solaris (@bugref{5211} comment3), we will follow ELF-64 */243 ElfNoteHdr.n_namesz = (Elf64_Word)cchName - 1; /* Again, a discrepancy between ELF-64 and Solaris (see @bugref{5211} comment #3), we will follow ELF-64 */ 244 244 ElfNoteHdr.n_type = Type; 245 245 ElfNoteHdr.n_descsz = (Elf64_Word)cbDataAlign; -
trunk/src/VBox/VMM/VMMRZ/VMMRZ.cpp
r50842 r51720 135 135 Assert(pVCpu->vmm.s.cCallRing3Disabled < 16); 136 136 if (ASMAtomicIncU32(&pVCpu->vmm.s.cCallRing3Disabled) == 1) /** @todo replace with unordered variant (ASMAtomicUoIncU32). */ 137 { /** @todo See @bugref{6208} c 36 for impl. diff. */137 { /** @todo See @bugref{6208} comment #36 for impl. diff. */ 138 138 /** @todo it might make more sense to just disable logging here, then we 139 139 * won't flush away important bits... but that goes both ways really. */
Note:
See TracChangeset
for help on using the changeset viewer.