diff options
author | Mike Hommey <mh@glandium.org> | 2009-11-11 14:26:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-12 07:26:01 -0800 |
commit | e04b5ef8b49db87d01a9b3a47fe41a918a0c0ff5 (patch) | |
tree | f643a43591e5d4593e79bafb47b8d3db70346af2 /fs/ioctl.c | |
parent | 276b282e904f690dc930f9bc946110651f297669 (diff) | |
download | kernel_samsung_aries-e04b5ef8b49db87d01a9b3a47fe41a918a0c0ff5.zip kernel_samsung_aries-e04b5ef8b49db87d01a9b3a47fe41a918a0c0ff5.tar.gz kernel_samsung_aries-e04b5ef8b49db87d01a9b3a47fe41a918a0c0ff5.tar.bz2 |
__generic_block_fiemap(): fix for files bigger than 4GB
Because of an integer overflow on start_blk, various kind of wrong results
would be returned by the generic_block_fiemap() handler, such as no
extents when there is a 4GB+ hole at the beginning of the file, or wrong
fe_logical when an extent starts after the first 4GB.
Signed-off-by: Mike Hommey <mh@glandium.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Steven Whitehouse <swhiteho@redhat.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Eric Sandeen <sandeen@sgi.com>
Cc: Josef Bacik <jbacik@redhat.com>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ioctl.c')
-rw-r--r-- | fs/ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ int __generic_block_fiemap(struct inode *inode, u64 len, get_block_t *get_block) { struct buffer_head tmp; - unsigned int start_blk; + unsigned long long start_blk; long long length = 0, map_len = 0; u64 logical = 0, phys = 0, size = 0; u32 flags = FIEMAP_EXTENT_MERGED; |