diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2025-05-20 19:05:39 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <nogikh@google.com> | 2025-05-21 15:21:12 +0000 |
| commit | f60639990bebd5cf6e642b8e0d08e1d66fc4201a (patch) | |
| tree | 7683ba983a63a9647ad26008e4d996be5a459502 /pkg/subsystem/linux/subsystems_test.go | |
| parent | dc5d3808dd69e7f80866f386c87a6ced5c2521f6 (diff) | |
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.
Diffstat (limited to 'pkg/subsystem/linux/subsystems_test.go')
| -rw-r--r-- | pkg/subsystem/linux/subsystems_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
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{ |
