Changeset 4811 in vbox for trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
- Timestamp:
- Sep 14, 2007 5:53:56 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24514
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r4800 r4811 751 751 static int VBoxDrvLinuxIOCtl(struct inode *pInode, struct file *pFilp, unsigned int uCmd, unsigned long ulArg) 752 752 { 753 #ifdef VBOX_WITHOUT_IDT_PATCHING754 753 /* 755 754 * Deal with the two high-speed IOCtl that takes it's arguments from … … 759 758 || uCmd == SUP_IOCTL_FAST_DO_HWACC_RUN 760 759 || uCmd == SUP_IOCTL_FAST_DO_NOP)) 761 return supdrvIOCtlFast(iCmd, &g_DevExt, (PSUPDRVSESSION)pFilp->private_data); 762 #endif 760 return supdrvIOCtlFast(uCmd, &g_DevExt, (PSUPDRVSESSION)pFilp->private_data); 763 761 return VBoxDrvLinuxIOCtlSlow(pInode, pFilp, uCmd, ulArg); 764 762 }
Note:
See TracChangeset
for help on using the changeset viewer.