diff options
Diffstat (limited to 'fs/btrfs/send.c')
| -rw-r--r-- | fs/btrfs/send.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 221e5cdb060b..c0074d2d7d6d 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -5236,6 +5236,10 @@ static int send_write_or_clone(struct send_ctx *sctx,  		len = btrfs_file_extent_num_bytes(path->nodes[0], ei);  	} +	if (offset >= sctx->cur_inode_size) { +		ret = 0; +		goto out; +	}  	if (offset + len > sctx->cur_inode_size)  		len = sctx->cur_inode_size - offset;  	if (len == 0) {  |