Changeset 7687 in vbox
- Timestamp:
- Apr 1, 2008 3:32:52 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/SELMAll.cpp
r5999 r7687 458 458 { 459 459 /* 460 * Limit check. 460 * Limit check. Note that the limit in the hidden register is the 461 * final value. The granularity bit was included in its calculation. 461 462 */ 462 463 uint32_t u32Limit = pHidCS->u32Limit; 463 /** @todo correct with hidden limit value?? */464 if (pHidCS->Attr.n.u1Granularity)465 u32Limit = (u32Limit << PAGE_SHIFT) | PAGE_OFFSET_MASK;466 464 if ((RTGCUINTPTR)Addr <= u32Limit) 467 465 {
Note:
See TracChangeset
for help on using the changeset viewer.