Btrfs: account for orphan inodes properly during cleanup
authorJosef Bacik <jbacik@fusionio.com>
Fri, 1 Feb 2013 20:57:47 +0000 (15:57 -0500)
committerJosef Bacik <jbacik@fusionio.com>
Wed, 20 Feb 2013 17:59:31 +0000 (12:59 -0500)
commit925396ecf251432d6d0f703a6cfd0cb9e651d936
tree046fc18a32543d07aad52383afcd26c462ce12af
parent0bec9ef525e33233d7739b71be83bb78746f6e94
Btrfs: account for orphan inodes properly during cleanup

Dave sent me a panic where we were doing the orphan cleanup and panic'ed
trying to release our reservation from the orphan block rsv.  The reason for
this is because our orphan block rsv had been free'd out from underneath us
because the transaction commit found that there were no orphan inodes
according to its count and decided to free it.  This is incorrect so make
sure we inc the orphan inodes count so the accounting is all done properly.
This would also cause the warning in the orphan commit code normally if you
had any orphans to cleanup as they would only decrement the orphan count so
you'd get a negative orphan count which could cause problems during runtime.
Thanks,

Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/inode.c