VirtualBox

Ignore:
Timestamp:
Mar 14, 2007 6:27:47 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
19541
Message:

No longer require contiguous memory for the VM structure.
Did long overdue IOCtl cleanup wrt R3/R0 pointers.

Location:
trunk/src/VBox/HostDrivers/Support/testcase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp

    r914 r1480  
    8787             * Create a fake 'VM'.
    8888             */
    89             PVMR0 pVMR0;
    90             RTHCPHYS HCPhysVM;
    91             PVM pVM = (PVM)SUPContAlloc2(sizeof(*pVM), &pVMR0, &HCPhysVM);
    92             if (pVM)
     89            PVMR0 pVMR0 = NIL_RTR0PTR;
     90            PVM pVM = NULL;
     91            const unsigned cPages = RT_ALIGN_Z(sizeof(*pVM), PAGE_SIZE) >> PAGE_SHIFT;
     92            PSUPPAGE paPages = (PSUPPAGE)RTMemAllocZ(cPages * sizeof(SUPPAGE));
     93            if (paPages)
     94                rc = SUPLowAlloc(cPages, (void **)&pVM, &pVMR0, &paPages[0]);
     95            else
     96                rc = VERR_NO_MEMORY;
     97            if (VBOX_SUCCESS(rc))
    9398            {
    9499                pVM->pVMGC = 0;
    95100                pVM->pVMR3 = pVM;
    96101                pVM->pVMR0 = pVMR0;
     102#ifdef VBOX_USE_LOW_MEM_FOR_VM
     103                pVM->paVMPagesR3 = paPages;
     104#else
    97105                pVM->HCPhysVM = HCPhysVM;
     106#endif
    98107                pVM->pSession = pSession;
    99108
  • trunk/src/VBox/HostDrivers/Support/testcase/tstLow.cpp

    r1 r1480  
    5050        void *pvPages0 = (void *)0x77777777;
    5151        memset(&aPages0[0], 0x8f, sizeof(aPages0));
    52         rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, aPages0);
     52        rc = SUPLowAlloc(ELEMENTS(aPages0), &pvPages0, NULL, aPages0);
    5353        if (VBOX_SUCCESS(rc))
    5454        {
     
    9898            void *pvPages1 = (void *)0x77777777;
    9999            memset(&aPages1[0], 0x8f, sizeof(aPages1));
    100             rc = SUPLowAlloc(cPages, &pvPages1, aPages1);
     100            rc = SUPLowAlloc(cPages, &pvPages1, NULL, aPages1);
    101101            if (VBOX_SUCCESS(rc))
    102102            {
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