From d0f31f8953ac80bcac72a36936ed345c65e51262 Mon Sep 17 00:00:00 2001 From: Lin Ma Date: Wed, 7 Jun 2023 11:22:11 +0800 Subject: pkg/subsystem: add tls email exception The current syz-query-subsystems raise below error: failed to query subsystems: failed to set names: failed to extract a name from kernel-tls-handshake@lists.linux.dev This patch adds this email to exception list to fix that. Signed-off-by: Lin Ma --- pkg/subsystem/linux/names.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/subsystem/linux') diff --git a/pkg/subsystem/linux/names.go b/pkg/subsystem/linux/names.go index 0ef47e3a6..42e1e566a 100644 --- a/pkg/subsystem/linux/names.go +++ b/pkg/subsystem/linux/names.go @@ -111,6 +111,7 @@ var ( "industrypack-devel@lists.sourceforge.net": "ipack", "v9fs-developer@lists.sourceforge.net": "9p", "cluster-devel@redhat.com": "gfs2", + "kernel-tls-handshake@lists.linux.dev": "tls", } stripPrefixes = []string{"linux-"} stripSuffixes = []string{ -- cgit mrf-deployment