Btrfs: delete checksum items before marking blocks free
authorChris Mason <chris.mason@oracle.com>
Tue, 16 Dec 2008 18:51:01 +0000 (13:51 -0500)
committerChris Mason <chris.mason@oracle.com>
Tue, 16 Dec 2008 18:51:01 +0000 (13:51 -0500)
commitdcbdd4dcb9793b00b46ab023e9330922c8c7c54c
treeca599e975c92de75c98283756f80b2aa7a1879bb
parent75eff68ea6959efd999b125fc3dcf73931a3b30b
Btrfs: delete checksum items before marking blocks free

Btrfs maintains a cache of blocks available for allocation in ram.  The
code that frees extents was marking the extents free and then deleting
the checksum items.

This meant it was possible the extent would be reallocated before the
checksum item was actually deleted, leading to races and other
problems as the checksums were updated for the newly allocated extent.

The fix is to delete the checksum before marking the extent free.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c
fs/btrfs/file-item.c