VirtualBox

Changeset 15981 in vbox for trunk


Ignore:
Timestamp:
Jan 16, 2009 9:10:53 AM (16 years ago)
Author:
vboxsync
Message:

Hidden selector limit must be set to 0xffff in real mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp

    r15971 r15981  
    12121212                    &&  enmGuestMode == PGMMODE_REAL)
    12131213                {
    1214                     /* The limit must also be adjusted. */
    1215                     pCtx->csHid.u32Limit &= 0xffff;
    1216                     pCtx->dsHid.u32Limit &= 0xffff;
    1217                     pCtx->esHid.u32Limit &= 0xffff;
    1218                     pCtx->fsHid.u32Limit &= 0xffff;
    1219                     pCtx->gsHid.u32Limit &= 0xffff;
    1220                     pCtx->ssHid.u32Limit &= 0xffff;
     1214                    /* The limit must also be set to 0xffff. */
     1215                    pCtx->csHid.u32Limit = 0xffff;
     1216                    pCtx->dsHid.u32Limit = 0xffff;
     1217                    pCtx->esHid.u32Limit = 0xffff;
     1218                    pCtx->fsHid.u32Limit = 0xffff;
     1219                    pCtx->gsHid.u32Limit = 0xffff;
     1220                    pCtx->ssHid.u32Limit = 0xffff;
    12211221
    12221222                    Assert(pCtx->csHid.u64Base <= 0xfffff);
Note: See TracChangeset for help on using the changeset viewer.

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