Btrfs: check file extent type before anything else
authorJosef Bacik <jbacik@fusionio.com>
Thu, 31 Oct 2013 20:49:02 +0000 (16:49 -0400)
committerChris Mason <chris.mason@fusionio.com>
Tue, 12 Nov 2013 03:12:49 +0000 (22:12 -0500)
commit007d31f755294b9db69c3d18e90d6edae9f1604d
treec4961e7d434b24c55a8f747aa5039b6cafe76200
parentf570e757b54ca6eceabc9b19a6342f14e836c196
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>
fs/btrfs/send.c