Hi all, This series creates a new NOALLOC flag for allocation groups that causes the block and inode allocators to look elsewhere when trying to allocate resources. This is either the first part of a patchset to implement online shrinking (set noalloc on the last AGs, run fsr to move the files and directories) or freeze-free rmapbt rebuilding (set noalloc to prevent creation of new mappings, then hook deletion of old mappings). This is still totally a research project. If you're going to start using this code, I strongly recommend pulling from my git trees, which are linked below. This has been running on the djcloud for months with no problems. Enjoy! Comments and questions are, as always, welcome. --D kernel git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-linux.git/log/?h=noalloc-ags xfsprogs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=noalloc-ags --- fs/xfs/Kconfig | 13 +++++ fs/xfs/libxfs/xfs_ag.c | 114 +++++++++++++++++++++++++++++++++++++++++++ fs/xfs/libxfs/xfs_ag.h | 8 +++ fs/xfs/libxfs/xfs_ag_resv.c | 27 +++++++++- fs/xfs/libxfs/xfs_defer.c | 14 +++++ fs/xfs/libxfs/xfs_fs.h | 5 ++ fs/xfs/libxfs/xfs_ialloc.c | 3 + fs/xfs/scrub/btree.c | 88 +++++++++++++++++++++++++++++++++ fs/xfs/scrub/common.c | 107 ++++++++++++++++++++++++++++++++++++++++ fs/xfs/scrub/common.h | 1 fs/xfs/scrub/dabtree.c | 24 +++++++++ fs/xfs/scrub/fscounters.c | 3 + fs/xfs/scrub/inode.c | 4 ++ fs/xfs/scrub/scrub.c | 40 +++++++++++++++ fs/xfs/scrub/trace.c | 22 ++++++++ fs/xfs/scrub/trace.h | 2 + fs/xfs/xfs_fsops.c | 10 +++- fs/xfs/xfs_globals.c | 5 ++ fs/xfs/xfs_ioctl.c | 4 +- fs/xfs/xfs_super.c | 1 fs/xfs/xfs_sysctl.h | 1 fs/xfs/xfs_sysfs.c | 32 ++++++++++++ fs/xfs/xfs_trace.h | 65 +++++++++++++++++++++++++ fs/xfs/xfs_trans.c | 3 + fs/xfs/xfs_trans.h | 7 +++ 25 files changed, 597 insertions(+), 6 deletions(-)