Btrfs: fix possible panic on unmount
authorJosef Bacik <josef@redhat.com>
Fri, 13 Nov 2009 20:12:59 +0000 (20:12 +0000)
committerChris Mason <chris.mason@oracle.com>
Mon, 18 Jan 2010 01:40:30 +0000 (20:40 -0500)
commit11dfe35a0108097f2df1f042c485fa7f758c2cdf
tree83d5af6992db15ee61bc0c960626c378a2f5b436
parenta9cc71a60c29a09174bee2fcef8f924c529fd4b7
Btrfs: fix possible panic on unmount

We can race with the unmount of an fs and the stopping of a kthread where we
will free the block group before we're done using it.  The reason for this is
because we do not hold a reference on the block group while its caching, since
the allocator drops its reference once it exits or moves on to the next block
group.  This patch fixes the problem by taking a reference to the block group
before we start caching and dropping it when we're done to make sure all
accesses to the block group are safe.  Thanks,

Signed-off-by: Josef Bacik <josef@redhat.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c