aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/recovery.c
diff options
context:
space:
mode:
authorChao Yu <yuchao0@huawei.com>2017-01-25 10:52:39 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2017-02-22 20:24:51 -0800
commitdba79f38bc60d98b605bdbbf5613aa3fb8f8ff7c (patch)
treedfbba41ac9cfc88c2e20e32b41a857dba6357c07 /fs/f2fs/recovery.c
parentf2fs: enhance lookup xattr (diff)
downloadlinux-dev-dba79f38bc60d98b605bdbbf5613aa3fb8f8ff7c.tar.xz
linux-dev-dba79f38bc60d98b605bdbbf5613aa3fb8f8ff7c.zip
f2fs: fix to avoid overflow when left shifting page offset
We use following method to calculate size with current page index: size = index << PAGE_SHIFT If type of index has only 32-bits size, left shifting will incur overflow, which makes result incorrect. So let's cast index with 64-bits type to avoid such issue. Signed-off-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/recovery.c')
-rw-r--r--fs/f2fs/recovery.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
index 4fb4471a3206..e93316ea8d1b 100644
--- a/fs/f2fs/recovery.c
+++ b/fs/f2fs/recovery.c
@@ -428,8 +428,9 @@ retry_dn:
}
if (!file_keep_isize(inode) &&
- (i_size_read(inode) <= (start << PAGE_SHIFT)))
- f2fs_i_size_write(inode, (start + 1) << PAGE_SHIFT);
+ (i_size_read(inode) <= ((loff_t)start << PAGE_SHIFT)))
+ f2fs_i_size_write(inode,
+ (loff_t)(start + 1) << PAGE_SHIFT);
/*
* dest is reserved block, invalidate src block