Hi all, This series uses the inode scanner and live update hook functionality introduced in the last patchset to implement quotacheck on a live filesystem. The quotacheck scrubber builds an incore copy of the dquot resource usage counters and compares it to the live dquots to report discrepancies. If the user chooses to repair the quota counters, the repair function visits each incore dquot to update the counts from the live information. The live update hooks are key to keeping the incore copy up to date. 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=repair-quotacheck xfsprogs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=repair-quotacheck fstests git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=repair-quotacheck --- io/scrub.c | 1 + libfrog/scrub.c | 5 +++++ libfrog/scrub.h | 1 + libxfs/xfs_fs.h | 4 +++- libxfs/xfs_health.h | 4 +++- man/man2/ioctl_xfs_fsgeometry.2 | 3 +++ scrub/phase4.c | 17 ++++++++++++++++ scrub/phase5.c | 22 +++++++++++++++++++- scrub/repair.c | 3 +++ scrub/scrub.c | 42 +++++++++++++++++++++++++++++++++++++++ scrub/scrub.h | 2 ++ scrub/xfs_scrub.h | 1 + spaceman/health.c | 4 ++++ 13 files changed, 105 insertions(+), 4 deletions(-)