aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/drivers/ubd_kern.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-11-30 20:09:07 +0100
committerArnd Bergmann <arnd@arndb.de>2020-01-03 09:33:02 +0100
commitab0cf1e425eaa25a1ead68edc69d8644dfae7745 (patch)
treef0595ee13b6491166311105dd0259db1b2df1b9f /arch/um/drivers/ubd_kern.c
parentcompat_ioctl: block: add blkdev_compat_ptr_ioctl (diff)
downloadlinux-dev-ab0cf1e425eaa25a1ead68edc69d8644dfae7745.tar.xz
linux-dev-ab0cf1e425eaa25a1ead68edc69d8644dfae7745.zip
compat_ioctl: ubd, aoe: use blkdev_compat_ptr_ioctl
These drivers implement the HDIO_GET_IDENTITY and CDROMVOLREAD ioctl commands, which are compatible between 32-bit and 64-bit user space and traditionally handled by compat_blkdev_driver_ioctl(). As a prerequisite to removing that function, make both drivers use blkdev_compat_ptr_ioctl() as their .compat_ioctl callback. Reviewed-by: Ben Hutchings <ben.hutchings@codethink.co.uk> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to '')
-rw-r--r--arch/um/drivers/ubd_kern.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
index 6627d7c30f37..582eb5b1f09b 100644
--- a/arch/um/drivers/ubd_kern.c
+++ b/arch/um/drivers/ubd_kern.c
@@ -113,6 +113,7 @@ static const struct block_device_operations ubd_blops = {
.open = ubd_open,
.release = ubd_release,
.ioctl = ubd_ioctl,
+ .compat_ioctl = blkdev_compat_ptr_ioctl,
.getgeo = ubd_getgeo,
};