diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-02-17 12:33:21 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-02-17 13:45:10 +0100 |
| commit | 31f28c518b07d2015f00817175b41a9539188328 (patch) | |
| tree | 956ad24d8f5a985f1a7ae1b42e646588f1a04ec0 /pkg/subsystem/linux | |
| parent | bc63aac79a4640f951b050c537ba040bb231449b (diff) | |
pkg/subsystem: improve naming rules
There were cases when subsystems did not get reasonable enough names.
Diffstat (limited to 'pkg/subsystem/linux')
| -rw-r--r-- | pkg/subsystem/linux/names.go | 4 | ||||
| -rw-r--r-- | pkg/subsystem/linux/rules.go | 8 |
2 files changed, 8 insertions, 4 deletions
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": {}, }, } ) |
