From 31f28c518b07d2015f00817175b41a9539188328 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Fri, 17 Feb 2023 12:33:21 +0100 Subject: pkg/subsystem: improve naming rules There were cases when subsystems did not get reasonable enough names. --- pkg/subsystem/linux/names.go | 4 +++- pkg/subsystem/linux/rules.go | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'pkg/subsystem/linux') diff --git a/pkg/subsystem/linux/names.go b/pkg/subsystem/linux/names.go index 7d0b64c47..84bba148a 100644 --- a/pkg/subsystem/linux/names.go +++ b/pkg/subsystem/linux/names.go @@ -94,12 +94,14 @@ var ( "MPT-FusionLinux.pdl@broadcom.com": "mpt-fusion", "linux-security-module@vger.kernel.org": "lsm", // the original name is too long "linux-unionfs@vger.kernel.org": "overlayfs", // the name has changed + "rust-for-linux@vger.kernel.org": "rust", + "industrypack-devel@lists.sourceforge.net": "ipack", } stripPrefixes = []string{"linux-"} stripSuffixes = []string{ "-devel", "-dev", "-devs", "-developer", "devel", "-user", "-users", - "-discussion", "-discuss", "-list", "-en", "-bugreport", + "-discussion", "-discuss", "-list", "-en", "-bugreport", "list", "-kernel", "-linux", "-general", "-platform", } emailStripRe = buildEmailStripRe() diff --git a/pkg/subsystem/linux/rules.go b/pkg/subsystem/linux/rules.go index 2dabf48fb..390e3175f 100644 --- a/pkg/subsystem/linux/rules.go +++ b/pkg/subsystem/linux/rules.go @@ -54,9 +54,11 @@ var ( "zonefs": {"syz_mount_image$zonefs"}, }, notSubsystemEmails: map[string]struct{}{ - "linaro-mm-sig@lists.linaro.org": {}, - "samba-technical@lists.samba.org": {}, - "storagedev@microchip.com": {}, + "linaro-mm-sig@lists.linaro.org": {}, + "samba-technical@lists.samba.org": {}, + "storagedev@microchip.com": {}, + "coreteam@netfilter.org": {}, + "SHA-cyfmac-dev-list@infineon.com": {}, }, } ) -- cgit mrf-deployment