]> git-server-git.apps.pok.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
common/rc: fix unknown _xfs_repair_test_fs function name
authorZorro Lang <zlang@kernel.org>
Sun, 24 Mar 2024 14:17:07 +0000 (22:17 +0800)
committerZorro Lang <zlang@kernel.org>
Wed, 27 Mar 2024 14:05:18 +0000 (22:05 +0800)
Sometimes I hit below errors:
  ./common/rc: line 1293: _xfs_repair_test_fs: command not found
  ./common/rc: line 1298: _xfs_repair_test_fs: command not found

The _repair_test_fs trys to call _xfs_repair_test_fs(), but there's
not that function in fstests. According to commit c7d81cdecbef,
it brought in _test_xfs_repair, but called wrong name. So fix it.

Fixes: c7d81cdecbef ("check: try to fix the test device if it gets corrupted")
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Zorro Lang <zlang@kernel.org>
common/rc

index ff2949bd05353d922ad7778a2d6629f8d59f8f71..b7b77ac1b46d33a7a5a6111da5fca4b49443a255 100644 (file)
--- a/common/rc
+++ b/common/rc
@@ -1290,12 +1290,12 @@ _repair_test_fs()
                        res=$?
                        if [ $res -gt 0 ]; then
                                echo "mount returns $res; zap log?" >>$tmp.repair
-                               _xfs_repair_test_fs -L >>$tmp.repair 2>&1
+                               _test_xfs_repair -L >>$tmp.repair 2>&1
                                echo "log zap returns $?" >> $tmp.repair
                        else
                                umount "$TEST_DEV"
                        fi
-                       _xfs_repair_test_fs "$@" >>$tmp.repair 2>&1
+                       _test_xfs_repair "$@" >>$tmp.repair 2>&1
                        res=$?
                fi
                ;;