aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fusionio.com>2013-10-31 16:49:02 -0400
committerChris Mason <chris.mason@fusionio.com>2013-11-11 22:12:49 -0500
commit007d31f755294b9db69c3d18e90d6edae9f1604d (patch)
treec4961e7d434b24c55a8f747aa5039b6cafe76200 /fs
parentf570e757b54ca6eceabc9b19a6342f14e836c196 (diff)
Btrfs: check file extent type before anything else
I hit this problem with my no holes patch and it made me realize what the problem was for bz 60834. If the first item in the leaf is an inline extent and we try to read anything starting from disk_bytenr onward we will read off the end of the leaf. So we need to check to see what it's type is, and if it's not REG we can just break out. This should fix this problem. Thanks, Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/send.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c
index ec2f02435287..6837fe87f3a6 100644
--- a/fs/btrfs/send.c
+++ b/fs/btrfs/send.c
@@ -3902,16 +3902,16 @@ static int is_extent_unchanged(struct send_ctx *sctx,
3902 while (key.offset < ekey->offset + left_len) { 3902 while (key.offset < ekey->offset + left_len) {
3903 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item); 3903 ei = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
3904 right_type = btrfs_file_extent_type(eb, ei); 3904 right_type = btrfs_file_extent_type(eb, ei);
3905 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
3906 right_len = btrfs_file_extent_num_bytes(eb, ei);
3907 right_offset = btrfs_file_extent_offset(eb, ei);
3908 right_gen = btrfs_file_extent_generation(eb, ei);
3909
3910 if (right_type != BTRFS_FILE_EXTENT_REG) { 3905 if (right_type != BTRFS_FILE_EXTENT_REG) {
3911 ret = 0; 3906 ret = 0;
3912 goto out; 3907 goto out;
3913 } 3908 }
3914 3909
3910 right_disknr = btrfs_file_extent_disk_bytenr(eb, ei);
3911 right_len = btrfs_file_extent_num_bytes(eb, ei);
3912 right_offset = btrfs_file_extent_offset(eb, ei);
3913 right_gen = btrfs_file_extent_generation(eb, ei);
3914
3915 /* 3915 /*
3916 * Are we at extent 8? If yes, we know the extent is changed. 3916 * Are we at extent 8? If yes, we know the extent is changed.
3917 * This may only happen on the first iteration. 3917 * This may only happen on the first iteration.