summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/send.c
diff options
context:
space:
mode:
authorAlexander Block2012-08-01 12:49:15 +0200
committerChris Mason2012-10-01 21:18:58 +0200
commitd8347fa444c682dc8a1e24e7158bfa2dd4c9ca71 (patch)
treed7d31fdcfc5fca5977b81b711ffd7ea956a8ecb1 /fs/btrfs/send.c
parentBtrfs: fix check for changed extent in is_extent_unchanged (diff)
downloadkernel-qcow2-linux-d8347fa444c682dc8a1e24e7158bfa2dd4c9ca71.tar.gz
kernel-qcow2-linux-d8347fa444c682dc8a1e24e7158bfa2dd4c9ca71.tar.xz
kernel-qcow2-linux-d8347fa444c682dc8a1e24e7158bfa2dd4c9ca71.zip
Btrfs: use <= instead of < in is_extent_unchanged
Used the wrong compare operator here. Reported-by: Alex Lyakas <alex.bolshoy.btrfs@gmail.com> Signed-off-by: Alexander Block <ablock84@googlemail.com>
Diffstat (limited to 'fs/btrfs/send.c')
-rw-r--r--fs/btrfs/send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index 35222d5420f6..c6c10a43153c 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -3802,7 +3802,7 @@ static int is_extent_unchanged(struct send_ctx *sctx,
* Are we at extent 8? If yes, we know the extent is changed.
* This may only happen on the first iteration.
*/
- if (found_key.offset + right_len < ekey->offset) {
+ if (found_key.offset + right_len <= ekey->offset) {
ret = 0;
goto out;
}