The shortform parent ino verification code runs once in phase 3 (ino_discovery == true) and once in phase 4 (ino_discovery == false). This is unnecessary and leads to duplicate error messages if repair replaces an invalid parent value with zero because zero is still an invalid value. Skip the check in phase 4. Signed-off-by: Brian Foster <bfoster@xxxxxxxxxx> --- repair/dir2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/repair/dir2.c b/repair/dir2.c index cbbce601..caf6963d 100644 --- a/repair/dir2.c +++ b/repair/dir2.c @@ -480,6 +480,9 @@ _("corrected entry offsets in directory %" PRIu64 "\n"), * check parent (..) entry */ *parent = libxfs_dir2_sf_get_parent_ino(sfp); + if (!ino_discovery) + return 0; + /* * if parent entry is bogus, null it out. we'll fix it later . -- 2.21.3