mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 16:44:10 +08:00
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>
This commit is contained in:
parent
3954096d4b
commit
d8347fa444
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user