dm ioctl: have constant on the right side of the test
authorHeinz Mauelshagen <heinzm@redhat.com>
Tue, 7 Feb 2023 20:47:45 +0000 (21:47 +0100)
committerMike Snitzer <snitzer@kernel.org>
Tue, 14 Feb 2023 19:23:07 +0000 (14:23 -0500)
Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-ioctl.c

index 7a90dadc20f643b8529d9b4002cbb76ed9893304..9a19bcd8fcfe7b665d629cbf9071c725889304f8 100644 (file)
@@ -1835,8 +1835,8 @@ static int check_version(unsigned int cmd, struct dm_ioctl __user *user)
        if (copy_from_user(version, user->version, sizeof(version)))
                return -EFAULT;
 
-       if ((DM_VERSION_MAJOR != version[0]) ||
-           (DM_VERSION_MINOR < version[1])) {
+       if ((version[0] != DM_VERSION_MAJOR) ||
+           (version[1] > DM_VERSION_MINOR)) {
                DMERR("ioctl interface mismatch: kernel(%u.%u.%u), user(%u.%u.%u), cmd(%d)",
                      DM_VERSION_MAJOR, DM_VERSION_MINOR,
                      DM_VERSION_PATCHLEVEL,