]> git.itanic.dy.fi Git - linux-stable/commit
Btrfs: fix hole check in log_one_extent
authorJosef Bacik <jbacik@fusionio.com>
Mon, 14 Oct 2013 21:23:08 +0000 (17:23 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Dec 2013 15:45:12 +0000 (07:45 -0800)
commitb395193ecf087a36e98b97c396f839b3fe9a4d19
tree3f3754fe4c3737bd8f70921c2584f6c95c4c094e
parentfb5834ff2b2823e1eaecd920e2ade3e07f4a42f9
Btrfs: fix hole check in log_one_extent

commit ed9e8af88e2551aaa6bf51d8063a2493e2d71597 upstream.

I added an assert to make sure we were looking up aligned offsets for csums and
I tripped it when running xfstests.  This is because log_one_extent was checking
if block_start == 0 for a hole instead of EXTENT_MAP_HOLE.  This worked out fine
in practice it seems, but it adds a lot of extra work that is uneeded.  With
this fix I'm no longer tripping my assert.  Thanks,

Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/btrfs/tree-log.c