From f60639990bebd5cf6e642b8e0d08e1d66fc4201a Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Tue, 20 May 2025 19:05:39 +0200 Subject: pkg/subsystem: fix dangling entries in the rules list There was a mistake in the Linux subsystem generation rules that led to the exclusion of exfat-related syz_mount_image calls from the resulting subsystem descriptions. Verify the rules before applying them. Fix other problems found by the check. --- pkg/subsystem/linux/subsystems_test.go | 1 - 1 file changed, 1 deletion(-) (limited to 'pkg/subsystem/linux/subsystems_test.go') diff --git a/pkg/subsystem/linux/subsystems_test.go b/pkg/subsystem/linux/subsystems_test.go index a3aa79b93..a411155ad 100644 --- a/pkg/subsystem/linux/subsystems_test.go +++ b/pkg/subsystem/linux/subsystems_test.go @@ -236,7 +236,6 @@ var ( testRules = &customRules{ subsystemCalls: map[string][]string{ "ext4": {"syz_mount_image$ext4"}, - "vxfs": {"syz_mount_image$vxfs"}, "tmpfs": {"syz_mount_image$tmpfs"}, }, extraSubsystems: map[string][]string{ -- cgit mrf-deployment