Changeset 8569 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- May 5, 2008 12:32:51 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30484
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
r8245 r8569 1059 1059 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) || defined(HAVE_26_STYLE_REMAP_PAGE_RANGE) 1060 1060 struct vm_area_struct *vma = find_vma(pTask->mm, ulAddrCur); /* this is probably the same for all the pages... */ 1061 AssertBreak (vma, rc = VERR_INTERNAL_ERROR);1061 AssertBreakStmt(vma, rc = VERR_INTERNAL_ERROR); 1062 1062 #endif 1063 1063 … … 1091 1091 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) || defined(HAVE_26_STYLE_REMAP_PAGE_RANGE) 1092 1092 struct vm_area_struct *vma = find_vma(pTask->mm, ulAddrCur); /* this is probably the same for all the pages... */ 1093 AssertBreak (vma, rc = VERR_INTERNAL_ERROR);1093 AssertBreakStmt(vma, rc = VERR_INTERNAL_ERROR); 1094 1094 #endif 1095 1095
Note:
See TracChangeset
for help on using the changeset viewer.