Hi all, Right now, the realtime section uses a single pair of metadata inodes to store the free space information. This presents a scalability problem since every thread trying to allocate or free rt extents have to lock these files. It would be very useful if we could begin to tackle these problems by sharding the realtime section, so create the notion of realtime groups, which are similar to allocation groups on the data section. While we're at it, define a superblock to be stamped into the start of each rt section. This enables utilities such as blkid to identify block devices containing realtime sections, and helpfully avoids the situation where a file extent can cross an rtgroup boundary. The best advantage for rtgroups will become evident later when we get to adding rmap and reflink to the realtime volume, since the geometry constraints are the same for rt groups and AGs. Hence we can reuse all that code directly. 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=realtime-groups xfsprogs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=realtime-groups fstests git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=realtime-groups xfsdocs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-documentation.git/log/?h=realtime-groups --- common/ext4 | 17 +++++ common/fuzzy | 38 ++++++++++-- common/populate | 78 +++++++++++++----------- common/xfs | 150 ++++++++++++++++++++++++++++++++++++++++++++--- src/punch-alternating.c | 28 ++++++++- tests/xfs/114 | 4 + tests/xfs/122 | 2 - tests/xfs/122.out | 8 +++ tests/xfs/146 | 2 - tests/xfs/185 | 2 - tests/xfs/187 | 3 + tests/xfs/206 | 3 + tests/xfs/271 | 3 + tests/xfs/341 | 4 + tests/xfs/449 | 6 ++ tests/xfs/556 | 16 +++-- tests/xfs/581 | 2 - tests/xfs/720 | 2 - tests/xfs/795 | 2 - 19 files changed, 298 insertions(+), 72 deletions(-)