VirtualBox

Changeset 60457 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Apr 12, 2016 1:27:21 PM (9 years ago)
Author:
vboxsync
Message:

Runtime: build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c

    r60455 r60457  
    10471047#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 6, 0)
    10481048        if (R0Process == RTR0ProcHandleSelf())
    1049 #endif
    10501049            rc = get_user_pages(R3Ptr,                  /* Where from. */
    10511050                                cPages,                 /* How many pages. */
     
    10541053                                &pMemLnx->apPages[0],   /* Page array. */
    10551054                                papVMAs);               /* vmas */
    1056 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 6, 0)
    10571055        /*
    10581056         * Actually this should not happen at the moment as call this function
     
    10691067                                &pMemLnx->apPages[0],   /* Page array. */
    10701068                                papVMAs);               /* vmas */
    1071 #endif
     1069#else /* LINUX_VERSION_CODE < KERNEL_VERSION(4, 6, 0) */
     1070            rc = get_user_pages(pTask,                  /* Task for fault accounting. */
     1071                                pTask->mm,              /* Whose pages. */
     1072                                R3Ptr,                  /* Where from. */
     1073                                cPages,                 /* How many pages. */
     1074                                fWrite,                 /* Write to memory. */
     1075                                fWrite,                 /* force write access. */
     1076                                &pMemLnx->apPages[0],   /* Page array. */
     1077                                papVMAs);               /* vmas */
     1078#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(4, 6, 0) */
    10721079        if (rc == cPages)
    10731080        {
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