]> git.karo-electronics.de Git - linux-beck.git/commit
btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls
authorJeff Mahoney <jeffm@suse.com>
Tue, 7 Feb 2017 00:39:09 +0000 (19:39 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Feb 2017 23:25:40 +0000 (15:25 -0800)
commit93fb043478b8d81cfa0d2399223bbf96bdb138e8
tree8cf2a676be07e0a3dd39e970e74550ebcff41dd1
parent76a9ac048b4876849b6e95fa4b20cca949f2bf0a
btrfs: fix btrfs_compat_ioctl failures on non-compat ioctls

commit 2a362249187a8d0f6d942d6e1d763d150a296f47 upstream.

Commit 4c63c2454ef incorrectly assumed that returning -ENOIOCTLCMD would
cause the native ioctl to be called.  The ->compat_ioctl callback is
expected to handle all ioctls, not just compat variants.  As a result,
when using 32-bit userspace on 64-bit kernels, everything except those
three ioctls would return -ENOTTY.

Fixes: 4c63c2454ef ("btrfs: bugfix: handle FS_IOC32_{GETFLAGS,SETFLAGS,GETVERSION} in btrfs_ioctl")
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/ioctl.c