Btrfs: fix memory leak of empty filesystem after balance
authorliubo <liubo2009@cn.fujitsu.com>
Mon, 7 Mar 2011 02:13:33 +0000 (02:13 +0000)
committerroot <Chris Mason chris.mason@oracle.com>
Mon, 28 Mar 2011 09:37:52 +0000 (05:37 -0400)
commit9f7c43c96727a53bea45f7f2549d897f0a6117b8
tree92037cbb39566fa8ba1b8a7644c8cb445be2c48a
parent2d4e6f6ad2b9f84f568d07dae4bdbc7f48a70ad1
Btrfs: fix memory leak of empty filesystem after balance

After Josef's patch(commit 3c14874acc71180553fb5aba528e3cf57c5b958b),
btrfs will exclude super bytes when reading block groups(by marking a extent
state UPTODATE).  However, these bytes do not get freed while balance remove
unused block groups, and we won't process those removed ones any more, when
we do umount and unload the btrfs module,  btrfs hits a memory leak.

This patch add the missing free operation.

Reproduce steps:
$ mkfs.btrfs disk
$ mount disk /mnt/btrfs -o loop
$ btrfs filesystem balance /mnt/btrfs
$ umount /mnt/btrfs
$ rmmod btrfs

Signed-off-by: Liu Bo <liubo2009@cn.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c