Hi Chandan, Please pull this branch with changes for xfs for 6.10-rc1. As usual, I did a test-merge with the main upstream branch as of a few minutes ago, and didn't see any conflicts. Please let me know if you encounter any problems. --D The following changes since commit 67ac7091e35bd34b75c0ec77331b53ca052e0cb3: xfs: enable parent pointers (2024-04-23 07:47:01 -0700) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git tags/scrub-pptrs-6.10_2024-04-23 for you to fetch changes up to 59a2af9086f0d60fc8de7346da67db7d764c7221: xfs: check parent pointer xattrs when scrubbing (2024-04-23 07:47:03 -0700) ---------------------------------------------------------------- xfs: scrubbing for parent pointers [v13.4 4/9] Teach online fsck to use parent pointers to assist in checking directories, parent pointers, extended attributes, and link counts. This has been running on the djcloud for months with no problems. Enjoy! Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> ---------------------------------------------------------------- Darrick J. Wong (7): xfs: revert commit 44af6c7e59b12 xfs: check dirents have parent pointers xfs: deferred scrub of dirents xfs: scrub parent pointers xfs: deferred scrub of parent pointers xfs: walk directory parent pointers to determine backref count xfs: check parent pointer xattrs when scrubbing fs/xfs/Makefile | 2 +- fs/xfs/libxfs/xfs_parent.c | 22 ++ fs/xfs/libxfs/xfs_parent.h | 5 + fs/xfs/scrub/attr.c | 27 +- fs/xfs/scrub/common.h | 1 + fs/xfs/scrub/dir.c | 342 ++++++++++++++++++++- fs/xfs/scrub/nlinks.c | 85 +++++- fs/xfs/scrub/nlinks_repair.c | 2 + fs/xfs/scrub/parent.c | 685 +++++++++++++++++++++++++++++++++++++++++++ fs/xfs/scrub/readdir.c | 78 +++++ fs/xfs/scrub/readdir.h | 3 + fs/xfs/scrub/trace.c | 1 + fs/xfs/scrub/trace.h | 65 ++++ 13 files changed, 1307 insertions(+), 11 deletions(-)