aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/compat_ioctl.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c
index 4909754ea84a..71c9d45c0624 100644
--- a/fs/compat_ioctl.c
+++ b/fs/compat_ioctl.c
@@ -3051,6 +3051,16 @@ HANDLE_IOCTL(TIOCSSERIAL, serial_struct_ioctl)
3051COMPATIBLE_IOCTL(TIOCGLTC) 3051COMPATIBLE_IOCTL(TIOCGLTC)
3052COMPATIBLE_IOCTL(TIOCSLTC) 3052COMPATIBLE_IOCTL(TIOCSLTC)
3053#endif 3053#endif
3054#ifdef TIOCSTART
3055/*
3056 * For these two we have defintions in ioctls.h and/or termios.h on
3057 * some architectures but no actual implemention. Some applications
3058 * like bash call them if they are defined in the headers, so we provide
3059 * entries here to avoid syslog message spew.
3060 */
3061COMPATIBLE_IOCTL(TIOCSTART)
3062COMPATIBLE_IOCTL(TIOCSTOP)
3063#endif
3054/* Usbdevfs */ 3064/* Usbdevfs */
3055HANDLE_IOCTL(USBDEVFS_CONTROL32, do_usbdevfs_control) 3065HANDLE_IOCTL(USBDEVFS_CONTROL32, do_usbdevfs_control)
3056HANDLE_IOCTL(USBDEVFS_BULK32, do_usbdevfs_bulk) 3066HANDLE_IOCTL(USBDEVFS_BULK32, do_usbdevfs_bulk)