- Timestamp:
- Mar 25, 2009 12:47:17 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44990
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r17935 r18250 66 66 $(warning Using BUILD_TYPE='$(BUILD_TYPE)' from the $(origin BUILD_TYPE).) 67 67 endif 68 69 # use vm_insert_page() API (if available) to map kernel pages to userland - better debugging70 # VBOX_USE_INSERT_PAGE = 171 68 72 69 # override is required by the Debian guys -
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r16464 r18250 51 51 #endif 52 52 53 /* 54 * 2.6.29+ kernels don't work with remap_pfn_range() anymore because 55 * track_pfn_vma_new() is apparently not defined for non-RAM pages. 56 * It should be safe to use vm_insert_page() older kernels as well. 57 */ 58 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 23) 59 # define VBOX_USE_INSERT_PAGE 60 #endif 53 61 54 62 /*******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.