Changeset 86547 in vbox
- Timestamp:
- Oct 12, 2020 6:57:00 PM (4 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vbox_drv.c
r86542 r86547 268 268 static int 269 269 #endif 270 271 270 vbox_master_set(struct drm_device *dev, 271 struct drm_file *file_priv, bool from_open) 272 272 { 273 273 struct vbox_private *vbox = dev->dev_private; -
trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
r86542 r86547 138 138 #include <linux/completion.h> 139 139 #include <linux/compiler.h> 140 /* linux/fs.h defines HAVE_UNLOCKED_IOCTL from 2.6.11 till 5.9, but its meaning remains valid */ 141 #if RTLNX_VER_MIN(5,9,0) 142 # define HAVE_UNLOCKED_IOCTL 1 140 #if RTLNX_VER_MIN(5,9,0) /* linux/fs.h defined HAVE_UNLOCKED_IOCTL from 2.6.11 up to 5.9, when it became an implicit assumption. */ 141 # define HAVE_UNLOCKED_IOCTL 1 /* We use this in a couple of places, so for now just define it for 5.9+ too. */ 143 142 #endif 144 143 #if !defined(HAVE_UNLOCKED_IOCTL) && RTLNX_VER_MAX(2,6,38)
Note:
See TracChangeset
for help on using the changeset viewer.