Re: [External] : Re: [PATCH v2 4/4] common/log: Fix *_dump_log routines for ext4
From: Catherine Hoang <hidden>
Date: 2021-10-07 18:24:55
Also in:
fstests
On Oct 7, 2021, at 9:15 AM, Darrick J. Wong [off-list ref] wrote: On Thu, Oct 07, 2021 at 12:26:41AM +0000, Catherine Hoang wrote:quoted
dumpe2fs -h displays the superblock contents, not the journal contents. Use the logdump utility to dump the contents of the journal. Signed-off-by: Catherine Hoang <redacted> --- common/log | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)diff --git a/common/log b/common/log index 0a9aaa7f..154f3959 100644 --- a/common/log +++ b/common/log@@ -229,7 +229,7 @@ _scratch_dump_log()$DUMP_F2FS_PROG $SCRATCH_DEV ;; ext4) - $DUMPE2FS_PROG -h $SCRATCH_DEV + $DEBUGFS_PROG -R "logdump -a" $SCRATCH_DEVHmm. Some of the tests call _require_command on various e2fsprogs programs. However, debugfs has been a part of e2fsprogs since forever and e2fsprogs is a required fstests dependency, so I guess those callsites are unnecessary (but otherwise benign). For that matter, I think e2fsprogs is an 'essential' package on Debian and almost always installed by Linux distros. I think that means it's safe to assume that debugfs is present. Reviewed-by: Darrick J. Wong <djwong@kernel.org> —D
Thanks for the reviews Darrick! Catherine
quoted
;; *) ;;@@ -246,7 +246,7 @@ _test_dump_log()$DUMP_F2FS_PROG $TEST_DEV ;; ext4) - $DUMPE2FS_PROG -h $TEST_DEV + $DEBUGFS_PROG -R "logdump -a" $TEST_DEV ;; *) ;; -- 2.25.1