]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commit
xfs: use per-AG reservations for the finobt
authorChristoph Hellwig <hch@lst.de>
Thu, 16 Feb 2017 03:04:03 +0000 (21:04 -0600)
committerEric Sandeen <sandeen@redhat.com>
Thu, 16 Feb 2017 03:04:03 +0000 (21:04 -0600)
commit74e502acb4964042d2c789b6c8cfd47240a856e0
tree52132ca989611244afba0b5187e0824a12f2c61e
parent2ffa676f9a967c6664b500d9b963ba358b37d606
xfs: use per-AG reservations for the finobt

Source kernel commit: 76d771b4cbe33c581bd6ca2710c120be51172440

Currently we try to rely on the global reserved block pool for block
allocations for the free inode btree, but I have customer reports
(fairly complex workload, need to find an easier reproducer) where that
is not enough as the AG where we free an inode that requires a new
finobt block is entirely full.  This causes us to cancel a dirty
transaction and thus a file system shutdown.

I think the right way to guard against this is to treat the finot the same
way as the refcount btree and have a per-AG reservations for the possible
worst case size of it, and the patch below implements that.

Note that this could increase mount times with large finobt trees.  In
an ideal world we would have added a field for the number of finobt
fields to the AGI, similar to what we did for the refcount blocks.
We should do add it next time we rev the AGI or AGF format by adding
new fields.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
include/xfs_mount.h
libxfs/xfs_ag_resv.c
libxfs/xfs_ialloc_btree.c
libxfs/xfs_ialloc_btree.h