VirtualBox

Changeset 7948 in vbox


Ignore:
Timestamp:
Apr 14, 2008 9:35:57 AM (17 years ago)
Author:
vboxsync
Message:

tell the user that PAE is not possible without VT-x or AMD-V

File:
1 edited

Legend:

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

    r7905 r7948  
    29112911        //case PGMMODE_PAE_NX:
    29122912        case PGMMODE_PAE:
     2913            if (!HWACCMR3IsAllowed(pVM))
     2914            {
     2915                VMSetRuntimeError(pVM, true, "PAEmodeDependsHwaccm",
     2916                                  N_("The guest is trying to switch to the PAE mode which is currently supported by VirtualBox only in VT-x mode or AMD-V mode. Either enable hardware virtualization for this VM or choose another flavour of the guest kernel (install a desktop kernel instead of a server kernel)"));
     2917                /* we must return TRUE here otherwise the recompiler will assert */
     2918                return VINF_SUCCESS;
     2919            }
    29132920            GCPhysCR3 = CPUMGetGuestCR3(pVM) & X86_CR3_PAE_PAGE_MASK;
    29142921            rc = PGM_GST_NAME_PAE(Enter)(pVM, GCPhysCR3);
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