aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 51466dcd44e0..5fa450452f9b 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -764,7 +764,7 @@ static int prepare_pages(struct btrfs_root *root, struct file *file,
764 } 764 }
765 if (start_pos < inode->i_size) { 765 if (start_pos < inode->i_size) {
766 u64 last_pos; 766 u64 last_pos;
767 last_pos = (index + num_pages) << PAGE_CACHE_SHIFT; 767 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
768 lock_extent(&BTRFS_I(inode)->io_tree, 768 lock_extent(&BTRFS_I(inode)->io_tree,
769 start_pos, last_pos - 1, GFP_NOFS); 769 start_pos, last_pos - 1, GFP_NOFS);
770 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos, 770 clear_extent_bits(&BTRFS_I(inode)->io_tree, start_pos,