diff options
-rw-r--r-- | fs/compat_ioctl.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index f0b7256b2f87..5dd0207ffd46 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -122,6 +122,7 @@ | |||
122 | #include <linux/dvb/dmx.h> | 122 | #include <linux/dvb/dmx.h> |
123 | #include <linux/dvb/frontend.h> | 123 | #include <linux/dvb/frontend.h> |
124 | #include <linux/dvb/video.h> | 124 | #include <linux/dvb/video.h> |
125 | #include <linux/lp.h> | ||
125 | 126 | ||
126 | /* Aiee. Someone does not find a difference between int and long */ | 127 | /* Aiee. Someone does not find a difference between int and long */ |
127 | #define EXT2_IOC32_GETFLAGS _IOR('f', 1, int) | 128 | #define EXT2_IOC32_GETFLAGS _IOR('f', 1, int) |
@@ -2735,6 +2736,20 @@ static int do_ncp_setprivatedata(unsigned int fd, unsigned int cmd, unsigned lon | |||
2735 | } | 2736 | } |
2736 | #endif | 2737 | #endif |
2737 | 2738 | ||
2739 | static int | ||
2740 | lp_timeout_trans(unsigned int fd, unsigned int cmd, unsigned long arg) | ||
2741 | { | ||
2742 | struct compat_timeval *tc = (struct compat_timeval *)arg; | ||
2743 | struct timeval *tn = compat_alloc_user_space(sizeof(struct timeval)); | ||
2744 | struct timeval ts; | ||
2745 | if (get_user(ts.tv_sec, &tc->tv_sec) || | ||
2746 | get_user(ts.tv_usec, &tc->tv_usec) || | ||
2747 | put_user(ts.tv_sec, &tn->tv_sec) || | ||
2748 | put_user(ts.tv_usec, &tn->tv_usec)) | ||
2749 | return -EFAULT; | ||
2750 | return sys_ioctl(fd, cmd, (unsigned long)tn); | ||
2751 | } | ||
2752 | |||
2738 | #define HANDLE_IOCTL(cmd,handler) \ | 2753 | #define HANDLE_IOCTL(cmd,handler) \ |
2739 | { (cmd), (ioctl_trans_handler_t)(handler) }, | 2754 | { (cmd), (ioctl_trans_handler_t)(handler) }, |
2740 | 2755 | ||
@@ -2962,6 +2977,20 @@ HANDLE_IOCTL(DMX_GET_EVENT, do_dmx_get_event) | |||
2962 | HANDLE_IOCTL(VIDEO_GET_EVENT, do_video_get_event) | 2977 | HANDLE_IOCTL(VIDEO_GET_EVENT, do_video_get_event) |
2963 | HANDLE_IOCTL(VIDEO_STILLPICTURE, do_video_stillpicture) | 2978 | HANDLE_IOCTL(VIDEO_STILLPICTURE, do_video_stillpicture) |
2964 | HANDLE_IOCTL(VIDEO_SET_SPU_PALETTE, do_video_set_spu_palette) | 2979 | HANDLE_IOCTL(VIDEO_SET_SPU_PALETTE, do_video_set_spu_palette) |
2980 | |||
2981 | /* parport */ | ||
2982 | COMPATIBLE_IOCTL(LPTIME) | ||
2983 | COMPATIBLE_IOCTL(LPCHAR) | ||
2984 | COMPATIBLE_IOCTL(LPABORTOPEN) | ||
2985 | COMPATIBLE_IOCTL(LPCAREFUL) | ||
2986 | COMPATIBLE_IOCTL(LPWAIT) | ||
2987 | COMPATIBLE_IOCTL(LPSETIRQ) | ||
2988 | COMPATIBLE_IOCTL(LPGETSTATUS) | ||
2989 | COMPATIBLE_IOCTL(LPGETSTATUS) | ||
2990 | COMPATIBLE_IOCTL(LPRESET) | ||
2991 | /*LPGETSTATS not implemented, but no kernels seem to compile it in anyways*/ | ||
2992 | COMPATIBLE_IOCTL(LPGETFLAGS) | ||
2993 | HANDLE_IOCTL(LPSETTIMEOUT, lp_timeout_trans) | ||
2965 | }; | 2994 | }; |
2966 | 2995 | ||
2967 | int ioctl_table_size = ARRAY_SIZE(ioctl_start); | 2996 | int ioctl_table_size = ARRAY_SIZE(ioctl_start); |