VirtualBox

Changeset 1508 in vbox for trunk


Ignore:
Timestamp:
Mar 15, 2007 12:00:18 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
19582
Message:

Monitor the entire guest TSS. (including the IO bitmap, although we don't care about that one)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/SELM.cpp

    r1507 r1508  
    14301430                                  || pDesc->Gen.u4Type == X86_SEL_TYPE_SYS_386_TSS_BUSY;
    14311431
    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),
    14361434                  ("GCPtrTss=%VGv cbTss=%#x - We assume everything is inside one page!\n", GCPtrTss, cbTss));
    14371435
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette