Changeset 4211 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 18, 2007 1:34:04 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/SELMAll.cpp
r4071 r4211 156 156 157 157 /** @todo when we're in 16 bits mode, we should cut off the address as well.. */ 158 if ( pHiddenSel 158 if ( pHiddenSel 159 159 && CPUMAreHiddenSelRegsValid(pVM)) 160 160 { … … 281 281 *ppvGC = pvFlat; 282 282 if (pcb) 283 *pcb = ( u1Granularity ? 0xffffffff : 0xffff) - (RTGCUINTPTR)Addr + 1;283 *pcb = (RTGCUINTPTR)(u1Granularity ? 0xffffffff : 0xffff) - (RTGCUINTPTR)Addr + 1; 284 284 return VINF_SUCCESS; 285 285 … … 606 606 /** @todo might cross page boundary */ 607 607 fTriedAlready = true; 608 rc = PGMPrefetchPage(pVM, GCPtrTss); 608 rc = PGMPrefetchPage(pVM, GCPtrTss); 609 609 if (rc != VINF_SUCCESS) 610 610 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.