Merge tag 'scrub-directory-tree-6.10_2024-04-23' of https://git.kernel.org/pub/scm...
authorChandan Babu R <chandanbabu@kernel.org>
Wed, 24 Apr 2024 06:47:51 +0000 (12:17 +0530)
committerChandan Babu R <chandanbabu@kernel.org>
Wed, 24 Apr 2024 06:47:51 +0000 (12:17 +0530)
commitf7cea94646b4fc4f5b862362193a158e5e41192e
treec064e7aee0ce09ea1a410d0178d32fa091ac008d
parent1da824b0bfcfca2c9e1477c0b97753b9d7e14f67
parent3f31406aef493b3f19020909d29974e28253f91c
Merge tag 'scrub-directory-tree-6.10_2024-04-23' of https://git./linux/kernel/git/djwong/xfs-linux into xfs-6.10-mergeC

xfs: detect and correct directory tree problems

Historically, checking the tree-ness of the directory tree structure has
not been complete.  Cycles of subdirectories break the tree properties,
as do subdirectories with multiple parents.  It's easy enough for DFS to
detect problems as long as one of the participants is reachable from the
root, but this technique cannot find unconnected cycles.

Directory parent pointers change that, because we can discover all of
these problems from a simple walk from a subdirectory towards the root.
For each child we start with, if the walk terminates without reaching
the root, we know the path is disconnected and ought to be attached to
the lost and found.  If we find ourselves, we know this is a cycle and
can delete an incoming edge.  If we find multiple paths to the root, we
know to delete an incoming edge.

Even better, once we've finished walking paths, we've identified the
good ones and know which other path(s) to remove.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
* tag 'scrub-directory-tree-6.10_2024-04-23' of https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux:
  xfs: fix corruptions in the directory tree
  xfs: report directory tree corruption in the health information
  xfs: invalidate dirloop scrub path data when concurrent updates happen
  xfs: teach online scrub to find directory tree structure problems