]> bbs.cooldavid.org Git - net-next-2.6.git/commit - fs/btrfs/free-space-cache.c
Btrfs: fix bitmap size tracking
authorJosef Bacik <josef@redhat.com>
Fri, 11 Sep 2009 20:11:20 +0000 (16:11 -0400)
committerChris Mason <chris.mason@oracle.com>
Mon, 21 Sep 2009 23:23:49 +0000 (19:23 -0400)
commitf019f4264ae8c0169332592bcee419ee90e7c827
tree61a2953e59b5883f376e5b6ba3938fa2721c97be
parent0a24325e6d8cfb150eba0aa279615ef27b5f6aec
Btrfs: fix bitmap size tracking

When we first go to add free space, we allocate a new info and set the offset
and bytes to the space we are adding.  This is fine, except we actually set the
size of a bitmap as we set the bits in it, so if we add space to a bitmap, we'd
end up counting the same space twice.  This isn't a huge deal, it just makes
the allocator behave weirdly since it will think that a bitmap entry has more
space than it ends up actually having.  I used a BUG_ON() to catch when this
problem happened, and with this patch I no longer get the BUG_ON().

Signed-off-by: Josef Bacik <jbacik@redhat.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/free-space-cache.c