aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
authorLiu Bo <bo.li.liu@oracle.com>2013-01-07 03:53:08 +0000
committerJosef Bacik <josef@toxicpanda.com>2013-01-14 13:53:22 -0500
commit1214b53f90131fee1f950010c43e92455fe598ab (patch)
treed2c3c55c3f86f539013fbbee2980f13ac312fb7d /fs/btrfs/file.c
parentBtrfs: reset path lock state to zero (diff)
downloadlinux-dev-1214b53f90131fee1f950010c43e92455fe598ab.tar.xz
linux-dev-1214b53f90131fee1f950010c43e92455fe598ab.zip
Btrfs: fix off-by-one in lseek
Lock end is inclusive. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 20452c110d7d..fa48051484b8 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -2242,6 +2242,7 @@ static int find_desired_extent(struct inode *inode, loff_t *offset, int origin)
if (lockend <= lockstart)
lockend = lockstart + root->sectorsize;
+ lockend--;
len = lockend - lockstart + 1;
len = max_t(u64, len, root->sectorsize);