mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
compat_ioctl: hook up compat handler for FIEMAP ioctl
The FIEMAP_IOC_FIEMAP mapping ioctl was missing a 32-bit compat handler, which means that 32-bit suerspace on 64-bit kernels cannot use this ioctl command. The structure is nicely aligned, padded, and sized, so it is just this simple. Tested w/ 32-bit ioctl tester (from Josef) on a 64-bit kernel on ext4. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Cc: <linux-ext4@vger.kernel.org> Cc: Mark Lord <lkml@rtr.ca> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Josef Bacik <josef@redhat.com> Cc: Jan Kara <jack@suse.cz> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
0035fe00f7
commit
69130c7cf9
1 changed files with 1 additions and 0 deletions
|
@ -1905,6 +1905,7 @@ COMPATIBLE_IOCTL(FIONCLEX)
|
|||
COMPATIBLE_IOCTL(FIOASYNC)
|
||||
COMPATIBLE_IOCTL(FIONBIO)
|
||||
COMPATIBLE_IOCTL(FIONREAD) /* This is also TIOCINQ */
|
||||
COMPATIBLE_IOCTL(FS_IOC_FIEMAP)
|
||||
/* 0x00 */
|
||||
COMPATIBLE_IOCTL(FIBMAP)
|
||||
COMPATIBLE_IOCTL(FIGETBSZ)
|
||||
|
|
Loading…
Reference in a new issue