From: Brian Behlendorf Date: Wed, 1 Sep 2010 22:58:09 +0000 (-0700) Subject: Fix zfsdev_compat_ioctl() case X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=f5e79474f07ec7a2035da2e139885a046ad70066;p=zfs.git Fix zfsdev_compat_ioctl() case For the !CONFIG_COMPAT case fix the zfsdev_compat_ioctl() compatibility function name. This was caught by the chaos4.3 builder. --- diff --git a/module/zfs/zfs_ioctl.c b/module/zfs/zfs_ioctl.c index 221b1e3..cc5e66f 100644 --- a/module/zfs/zfs_ioctl.c +++ b/module/zfs/zfs_ioctl.c @@ -5141,7 +5141,7 @@ zfsdev_compat_ioctl(struct file *filp, unsigned cmd, unsigned long arg) return zfsdev_ioctl(filp, cmd, arg); } #else -#define zfs_compat_ioctl NULL +#define zfsdev_compat_ioctl NULL #endif static const struct file_operations zfsdev_fops = {