From 2f1f8b0219623d735f3e9d6223275c21615f2d40 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Fri, 30 Dec 2022 14:19:39 -0800 Subject: [PATCH] fuzzy: don't fuzz the log sequence number Don't bother filtering log sequence numbers since xfs_db doesn't have the ability to tell us the range of LSNs that would actually cause validation failures. Signed-off-by: Darrick J. Wong Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- common/fuzzy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/fuzzy b/common/fuzzy index 7e3b33e8..5e468306 100644 --- a/common/fuzzy +++ b/common/fuzzy @@ -78,7 +78,9 @@ __filter_xfs_db_keys() { # does no validation. __filter_unvalidated_xfs_db_fields() { sed -e '/\.sec/d' \ - -e '/\.nsec/d' + -e '/\.nsec/d' \ + -e '/^lsn$/d' \ + -e '/\.lsn/d' } # Filter the xfs_db print command's field debug information -- 2.39.5