]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Rename macro ZFS_MINOR due to Lustre conflict
authorOlaf Faaland <faaland1@llnl.gov>
Tue, 11 Dec 2018 00:52:49 +0000 (16:52 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 11 Dec 2018 00:52:49 +0000 (16:52 -0800)
Macro ZFS_MINOR, introduced in commit a6cc9756 to record the chosen
static minor number for /dev/zfs, conflicts with an existing macro
in Lustre.  The lustre macro (along with _MAJOR, _PATCH, _FIX) is
used to record the zfsonlinux version Lustre is being built against.

Since the Lustre macro came first, and is used in past versions of
lustre at least going back to 2.10, it makes sense to rename the
macro in ZFS instead of doing so in Lustre which would require
backporting the patch.

Reviewed-by: Giuseppe Di Natale <guss80@gmail.com>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #8195

config/kernel-misc-minor.m4
module/zfs/zfs_ioctl.c

index 3917e28ff63624b6caa09ba5180f76a69cb39d4b..a020d2ebca017924138b415b63fa875779c9bc7b 100644 (file)
@@ -11,15 +11,15 @@ AC_DEFUN([ZFS_AC_KERNEL_MISC_MINOR], [
        for i in $(seq 249 -1 200); do
                if ! grep -q "^#define\s\+.*_MINOR\s\+.*$i" \
                    ${LINUX}/include/linux/miscdevice.h; then
-                       ZFS_MINOR="$i"
-                       AC_MSG_RESULT($ZFS_MINOR)
-                       AC_DEFINE_UNQUOTED([ZFS_MINOR], [$ZFS_MINOR],
-                           [/dev/zfs minor])
+                       ZFS_DEVICE_MINOR="$i"
+                       AC_MSG_RESULT($ZFS_DEVICE_MINOR)
+                       AC_DEFINE_UNQUOTED([ZFS_DEVICE_MINOR],
+                           [$ZFS_DEVICE_MINOR], [/dev/zfs minor])
                        break
                fi
        done
 
-       AS_IF([ test -z "$ZFS_MINOR"], [
+       AS_IF([ test -z "$ZFS_DEVICE_MINOR"], [
                AC_MSG_ERROR([
        *** No available misc minor numbers available for use.])
        ])
index e19ed34df037759d290d09747a3f2f00c2efc089..7c469246d98d66f50c1fec7b96459920cf1bef62 100644 (file)
@@ -7074,12 +7074,12 @@ static const struct file_operations zfsdev_fops = {
 };
 
 static struct miscdevice zfs_misc = {
-       .minor          = ZFS_MINOR,
+       .minor          = ZFS_DEVICE_MINOR,
        .name           = ZFS_DRIVER,
        .fops           = &zfsdev_fops,
 };
 
-MODULE_ALIAS_MISCDEV(ZFS_MINOR);
+MODULE_ALIAS_MISCDEV(ZFS_DEVICE_MINOR);
 MODULE_ALIAS("devname:zfs");
 
 static int
@@ -7100,7 +7100,7 @@ zfs_attach(void)
                 */
                printk(KERN_INFO "ZFS: misc_register() with static minor %d "
                    "failed %d, retrying with MISC_DYNAMIC_MINOR\n",
-                   ZFS_MINOR, error);
+                   ZFS_DEVICE_MINOR, error);
 
                zfs_misc.minor = MISC_DYNAMIC_MINOR;
                error = misc_register(&zfs_misc);