Prev: sysctl.c: Change a .proc_handler = proc_dointvec to &proc_dointvec,
Next: kfifo: add kfifo_skip, kfifo_from_user and kfifo_to_user
From: Arnd Bergmann on 15 Nov 2009 19:30 These handlers were moved into the respective drivers and can now be deleted from common code. Signed-off-by: Arnd Bergmann <arnd(a)arndb.de> --- fs/compat_ioctl.c | 26 -------------------------- 1 files changed, 0 insertions(+), 26 deletions(-) diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index 1fef181..5ae4fde 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c @@ -735,21 +735,6 @@ COMPATIBLE_IOCTL(FIGETBSZ) /* 'X' - originally XFS but some now in the VFS */ COMPATIBLE_IOCTL(FIFREEZE) COMPATIBLE_IOCTL(FITHAW) -COMPATIBLE_IOCTL(KDGETKEYCODE) -COMPATIBLE_IOCTL(KDSETKEYCODE) -COMPATIBLE_IOCTL(KDGKBTYPE) -COMPATIBLE_IOCTL(KDGETMODE) -COMPATIBLE_IOCTL(KDGKBMODE) -COMPATIBLE_IOCTL(KDGKBMETA) -COMPATIBLE_IOCTL(KDGKBENT) -COMPATIBLE_IOCTL(KDSKBENT) -COMPATIBLE_IOCTL(KDGKBSENT) -COMPATIBLE_IOCTL(KDSKBSENT) -COMPATIBLE_IOCTL(KDGKBDIACR) -COMPATIBLE_IOCTL(KDSKBDIACR) -COMPATIBLE_IOCTL(KDKBDREP) -COMPATIBLE_IOCTL(KDGKBLED) -COMPATIBLE_IOCTL(KDGETLED) #ifdef CONFIG_BLOCK /* Big S */ COMPATIBLE_IOCTL(SCSI_IOCTL_GET_IDLUN) @@ -1277,26 +1262,15 @@ static long do_ioctl_trans(int fd, unsigned int cmd, return do_video_stillpicture(fd, cmd, argp); case VIDEO_SET_SPU_PALETTE: return do_video_set_spu_palette(fd, cmd, argp); - } /* * These take an integer instead of a pointer as 'arg', * so we must not do a compat_ptr() translation. */ - switch (cmd) { /* Big T */ case TCSBRKP: case TIOCMIWAIT: case TIOCSCTTY: - /* Big K */ - case KDSIGACCEPT: - case KIOCSOUND: - case KDMKTONE: - case KDSETMODE: - case KDSKBMODE: - case KDSKBMETA: - case KDSKBLED: - case KDSETLED: return do_vfs_ioctl(file, fd, cmd, arg); } -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |