- Timestamp:
- Mar 15, 2007 12:00:18 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19582
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/SELM.cpp
r1507 r1508 1430 1430 || pDesc->Gen.u4Type == X86_SEL_TYPE_SYS_386_TSS_BUSY; 1431 1431 1432 /* Don't bother with anything but the core structure. (Actually all we care for is the r0 ss.) */ 1433 if (cbTss > sizeof(VBOXTSS)) 1434 cbTss = sizeof(VBOXTSS); 1435 AssertMsg((GCPtrTss >> PAGE_SHIFT) == ((GCPtrTss + cbTss - 1) >> PAGE_SHIFT), 1432 /* The guest's TSS can span multiple pages now. We will monitor the whole thing. */ 1433 AssertMsg((GCPtrTss >> PAGE_SHIFT) == ((GCPtrTss + sizeof(VBOXTSS) - 1) >> PAGE_SHIFT), 1436 1434 ("GCPtrTss=%VGv cbTss=%#x - We assume everything is inside one page!\n", GCPtrTss, cbTss)); 1437 1435
Note:
See TracChangeset
for help on using the changeset viewer.