[media] media: Add 64--32 bit compat ioctl handler
authorSakari Ailus <sakari.ailus@iki.fi>
Tue, 22 Jan 2013 15:27:55 +0000 (12:27 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 18 Mar 2013 23:44:36 +0000 (20:44 -0300)
Provide an ioctl handler for 32-bit binaries on 64-bit systems.

Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Tested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/media-devnode.c
include/media/media-devnode.h

index 023b2a1cbb9b73ba6829f387f28e85f9f3f72e91..fb0f0469fad7c015f2d27d0811c0c1d0bfc26951 100644 (file)
@@ -116,19 +116,41 @@ static unsigned int media_poll(struct file *filp,
        return mdev->fops->poll(filp, poll);
 }
 
-static long media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
+static long
+__media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg,
+             long (*ioctl_func)(struct file *filp, unsigned int cmd,
+                                unsigned long arg))
 {
        struct media_devnode *mdev = media_devnode_data(filp);
 
-       if (!mdev->fops->ioctl)
+       if (!ioctl_func)
                return -ENOTTY;
 
        if (!media_devnode_is_registered(mdev))
                return -EIO;
 
-       return mdev->fops->ioctl(filp, cmd, arg);
+       return ioctl_func(filp, cmd, arg);
+}
+
+static long media_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
+{
+       struct media_devnode *mdev = media_devnode_data(filp);
+
+       return __media_ioctl(filp, cmd, arg, mdev->fops->ioctl);
 }
 
+#ifdef CONFIG_COMPAT
+
+static long media_compat_ioctl(struct file *filp, unsigned int cmd,
+                              unsigned long arg)
+{
+       struct media_devnode *mdev = media_devnode_data(filp);
+
+       return __media_ioctl(filp, cmd, arg, mdev->fops->compat_ioctl);
+}
+
+#endif /* CONFIG_COMPAT */
+
 /* Override for the open function */
 static int media_open(struct inode *inode, struct file *filp)
 {
@@ -188,6 +210,9 @@ static const struct file_operations media_devnode_fops = {
        .write = media_write,
        .open = media_open,
        .unlocked_ioctl = media_ioctl,
+#ifdef CONFIG_COMPAT
+       .compat_ioctl = media_compat_ioctl,
+#endif /* CONFIG_COMPAT */
        .release = media_release,
        .poll = media_poll,
        .llseek = no_llseek,
index f6caafc874cbdc28aa950b64103603c25d6c5e53..3446af279fca4eba138e4edcfaf5a411643aef07 100644 (file)
@@ -46,6 +46,7 @@ struct media_file_operations {
        ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
        unsigned int (*poll) (struct file *, struct poll_table_struct *);
        long (*ioctl) (struct file *, unsigned int, unsigned long);
+       long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
        int (*open) (struct file *);
        int (*release) (struct file *);
 };
This page took 0.041252 seconds and 5 git commands to generate.