Changeset 108689 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Mar 21, 2025 1:13:47 PM (4 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168105
- Location:
- trunk/src/VBox/Additions/linux/drm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vbox_drv.c
r108379 r108689 373 373 .unload = vbox_driver_unload, 374 374 #endif 375 #if RTLNX_VER_MAX(6,12,0) 375 #if RTLNX_VER_MAX(6,12,0) && !RTLNX_RHEL_RANGE(9,7, 9,99) 376 376 .lastclose = vbox_driver_lastclose, 377 377 #endif -
trunk/src/VBox/Additions/linux/drm/vbox_mode.c
r107717 r108689 894 894 dst = vbox->cursor_data; 895 895 896 #if RTLNX_VER_MIN(6,4,0) 896 #if RTLNX_VER_MIN(6,4,0) || RTLNX_RHEL_RANGE(9,7, 9,99) 897 897 /* Make sure bo is in SYSTEM (main) memory, so we can access it directly. */ 898 898 ret = vbox_bo_pin(bo, VBOX_MEM_TYPE_SYSTEM, NULL); … … 913 913 if (ret) { 914 914 vbox->cursor_data_size = 0; 915 #if RTLNX_VER_MIN(6,4,0) 915 #if RTLNX_VER_MIN(6,4,0) || RTLNX_RHEL_RANGE(9,7, 9,99) 916 916 goto out_bo_unpin; 917 917 #else … … 939 939 out_unmap_bo: 940 940 ttm_bo_kunmap(&uobj_map); 941 #if RTLNX_VER_MIN(6,4,0) 941 #if RTLNX_VER_MIN(6,4,0) || RTLNX_RHEL_RANGE(9,7, 9,99) 942 942 out_bo_unpin: 943 943 vbox_bo_unpin(bo); -
trunk/src/VBox/Additions/linux/drm/vbox_ttm.c
r108573 r108689 364 364 struct ttm_place *hop) 365 365 { 366 # if RTLNX_VER_MIN(6,4,0) 366 # if RTLNX_VER_MIN(6,4,0) || RTLNX_RHEL_RANGE(9,7, 9,99) 367 367 if (!bo->resource) 368 368 {
Note:
See TracChangeset
for help on using the changeset viewer.