]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: fix the allocator loop logic
authorJosef Bacik <josef@redhat.com>
Fri, 27 May 2011 20:11:38 +0000 (16:11 -0400)
committerJosef Bacik <josef@redhat.com>
Wed, 8 Jun 2011 20:37:29 +0000 (16:37 -0400)
commit06a829263b1ae12d2055a18e9303ed251994e4a0
tree55ee1276c7e5e1dc95a6204cc138d69983bb0ffb
parenta2724bd59037a1dd32b2be46500b1218f3307887
Btrfs: fix the allocator loop logic

I was testing with empty_cluster = 0 to try and reproduce a problem and kept
hitting early enospc panics.  This was because our loop logic was a little
confused.  So this is what I did

1) Make the loop variable the ultimate decider on wether we should loop again
isntead of checking to see if we had an uncached bg, empty size or empty
cluster.

2) Increment loop before checking to see what we are on to make the loop
definitions make more sense.

3) If we are on the chunk alloc loop don't set empty_size/empty_cluster to 0
unless we didn't actually allocate a chunk.  If we did allocate a chunk we
should be able to easily setup a new cluster so clearing
empty_size/empty_cluster makes us less efficient.

This kept me from hitting panics while trying to reproduce the other problem.
Thanks,

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