Changeset 63755 in vbox for trunk/src/VBox
- Timestamp:
- Sep 7, 2016 4:55:01 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/linux/drm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vbox_drv.c
r63551 r63755 245 245 } 246 246 247 #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) 247 248 static void vbox_master_drop(struct drm_device *dev, 248 249 struct drm_file *file_priv, 249 250 bool from_release) 251 #else 252 static void vbox_master_drop(struct drm_device *dev, 253 struct drm_file *file_priv) 254 #endif 250 255 { 251 256 struct vbox_private *vbox = dev->dev_private; -
trunk/src/VBox/Additions/linux/drm/vbox_ttm.c
r63297 r63755 222 222 { 223 223 int r; 224 #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 8, 0) 224 225 r = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, new_mem); 226 #else 227 r = ttm_bo_move_memcpy(bo, evict, interruptible, no_wait_gpu, new_mem); 228 #endif 225 229 return r; 226 230 }
Note:
See TracChangeset
for help on using the changeset viewer.