Btrfs: fix btrfs send for inline items and compression
authorChris Mason <chris.mason@fusionio.com>
Tue, 7 Aug 2012 20:25:13 +0000 (16:25 -0400)
committerChris Mason <chris.mason@fusionio.com>
Mon, 1 Oct 2012 19:19:00 +0000 (15:19 -0400)
commit74dd17fbe3d65829e75d84f00a9525b2ace93998
tree84c7ffead9b44d2b7d73601aed5be7a5637e804b
parent6d85ed05e16e7ff747025c8374f23d7d81c98540
Btrfs: fix btrfs send for inline items and compression

The btrfs send code was assuming the offset of the file item into the
extent translated to bytes on disk.  If we're compressed, this isn't
true, and so it was off into extents owned by other files.

It was also improperly handling inline extents.  This solves a crash
where we may have gone past the end of the file extent item by not
testing early enough for an inline extent.  It also solves problems
where we have a whole between the end of the inline item and the start
of the full extent.

Signed-off-by: Chris Mason <chris.mason@fusionio.com>
fs/btrfs/ctree.c
fs/btrfs/extent_io.c
fs/btrfs/send.c