aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/subsystem
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-02-23 16:23:06 +0100
committerAleksandr Nogikh <wp32pw@gmail.com>2023-02-23 16:56:04 +0100
commitf424ec2b606ed6260309df6c210a144ae155e8fd (patch)
tree620002e0cae5d86ada086fde33595a9dd7446588 /pkg/subsystem
parenta7ade81b6eb453a9568462b2060cb1d6b39cb632 (diff)
pkg/subsystem/linux: add more fs subsystems
We've put too much under the "fs" tag.
Diffstat (limited to 'pkg/subsystem')
-rw-r--r--pkg/subsystem/linux/rules.go12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkg/subsystem/linux/rules.go b/pkg/subsystem/linux/rules.go
index 9282a7129..aba21bc66 100644
--- a/pkg/subsystem/linux/rules.go
+++ b/pkg/subsystem/linux/rules.go
@@ -30,9 +30,9 @@ var (
"ext4": {"syz_mount_image$ext4"},
"f2fs": {"syz_mount_image$f2fs"},
"fat": {"syz_mount_image$msdos", "syz_mount_image$vfat"},
+ "fuse": {"syz_fuse_handle_req"},
"gfs2": {"syz_mount_image$gfs2", "syz_mount_image$gfs2meta"},
- "hfs": {"syz_mount_image$hfs"},
- "hfsplus": {"syz_mount_image$hfsplus"},
+ "hfs": {"syz_mount_image$hfs", "syz_mount_image$hfsplus"},
"hpfs": {"syz_mount_image$hpfs"},
"io-uring": {"syz_io_uring_setup"},
"iso9660": {"syz_mount_image$iso9660"},
@@ -67,6 +67,12 @@ var (
"coreteam@netfilter.org": {},
"SHA-cyfmac-dev-list@infineon.com": {},
},
- extraSubsystems: map[string][]string{},
+ extraSubsystems: map[string][]string{
+ "bfs": {"BFS FILE SYSTEM"},
+ "fuse": {"FUSE: FILESYSTEM IN USERSPACE"},
+ "hfs": {"HFS FILESYSTEM", "HFSPLUS FILESYSTEM"},
+ "kernfs": {"KERNFS"},
+ "udf": {"UDF FILESYSTEM"},
+ },
}
)