Skip to content

Commit 560adf1

Browse files
tools/syz-query-subsystems: introduce the kvm-x86 subsystem
Split off kvm-x86 from kvm for better coverage accounting. Both subsystems will still share the CC lists, so bugs in x86 code won't be emailed twice. While at this, also fix the tool name in the generated comment and regenerate pkg/subsystem/lists/linux.go on v6.14-rc7.
1 parent d6b2ee5 commit 560adf1

File tree

3 files changed

+28
-17
lines changed

3 files changed

+28
-17
lines changed

pkg/subsystem/linux/rules.go

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,19 @@ var (
8989
"tomoyo-users-en@lists.osdn.me": {},
9090
},
9191
extraSubsystems: map[string][]string{
92-
"bfs": {"BFS FILE SYSTEM"},
93-
"exfat": {"EXFAT FILE SYSTEM", "VFAT/FAT/MSDOS FILESYSTEM"},
94-
"fuse": {"FUSE: FILESYSTEM IN USERSPACE"},
95-
"hfs": {"HFS FILESYSTEM", "HFSPLUS FILESYSTEM"},
96-
"isofs": {"ISOFS FILESYSTEM"},
97-
"kernfs": {"KERNFS"},
98-
"udf": {"UDF FILESYSTEM"},
99-
"nfc": {"NFC SUBSYSTEM"},
100-
"iomap": {"FILESYSTEMS [IOMAP]"},
101-
"xfs": {"XFS FILESYSTEM"},
102-
"jffs2": {"JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)"},
103-
"smc": {"SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS"}, // See #5838.
92+
"bfs": {"BFS FILE SYSTEM"},
93+
"exfat": {"EXFAT FILE SYSTEM", "VFAT/FAT/MSDOS FILESYSTEM"},
94+
"fuse": {"FUSE: FILESYSTEM IN USERSPACE"},
95+
"hfs": {"HFS FILESYSTEM", "HFSPLUS FILESYSTEM"},
96+
"isofs": {"ISOFS FILESYSTEM"},
97+
"kernfs": {"KERNFS"},
98+
"udf": {"UDF FILESYSTEM"},
99+
"nfc": {"NFC SUBSYSTEM"},
100+
"iomap": {"FILESYSTEMS [IOMAP]"},
101+
"xfs": {"XFS FILESYSTEM"},
102+
"jffs2": {"JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)"},
103+
"smc": {"SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS"}, // See #5838.
104+
"kvm-x86": {"KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)"},
104105
},
105106
noReminders: map[string]struct{}{
106107
// Many misclassified bugs end up in `kernel`, so there's no sense

pkg/subsystem/lists/linux.go

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/syz-query-subsystems/generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ type templateVars struct {
131131
Hierarchy []string
132132
}
133133

134-
const fileTemplate = `// Code generated by the syz-query-subsystem tool. DO NOT EDIT.
134+
const fileTemplate = `// Code generated by the syz-query-subsystems tool. DO NOT EDIT.
135135
{{- if .CommitInfo}}
136136
// {{.CommitInfo}}
137137
{{- end}}

0 commit comments

Comments
 (0)