diff options
author | Darrick J. Wong <djwong@kernel.org> | 2024-06-03 13:12:27 -0700 |
---|---|---|
committer | Zorro Lang <zlang@kernel.org> | 2024-06-07 18:19:41 +0800 |
commit | 1a9ca7d53339a64bbdd1052da9539f6bcb22ea62 (patch) | |
tree | 8aaa239d1b5293aa2bfd2e38af604401b5519359 | |
parent | 887f00615ac4989b6ad872b987cc1a352f7a4e82 (diff) |
fuzzy: mask off a few more inode fields from the fuzz tests
XFS doesn't do any validation for filestreams, so don't waste time
fuzzing that. Exclude the bigtime flag, since we already have inode
timestamps on the no-fuzz list. Exclude the warning counters, since
they're defunct now.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Zorro Lang <zlang@kernel.org>
-rw-r--r-- | common/fuzzy | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common/fuzzy b/common/fuzzy index 218fe165..c07f461b 100644 --- a/common/fuzzy +++ b/common/fuzzy @@ -122,7 +122,11 @@ __filter_unvalidated_xfs_db_fields() { -e '/^entries.*secure/d' \ -e '/^a.sfattr.list.*value/d' \ -e '/^a.sfattr.list.*root/d' \ - -e '/^a.sfattr.list.*secure/d' + -e '/^a.sfattr.list.*secure/d' \ + -e '/^core.filestream/d' \ + -e '/^v3.bigtime/d' \ + -e '/\.rtbwarns/d' \ + -e '/\.[ib]warns/d' } # Filter the xfs_db print command's field debug information |