From 03e12510535a17bacc1346348437ae99fd98efd7 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Sat, 11 Nov 2023 03:20:49 +0100 Subject: pkg/subsystem: move wireless under net It will help keep more generic reports in "net". --- pkg/subsystem/linux/rules.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pkg/subsystem/linux/rules.go') diff --git a/pkg/subsystem/linux/rules.go b/pkg/subsystem/linux/rules.go index b9e78a9a5..c2ed6451a 100644 --- a/pkg/subsystem/linux/rules.go +++ b/pkg/subsystem/linux/rules.go @@ -14,6 +14,8 @@ type customRules struct { extraSubsystems map[string][]string // For these subsystems we do not generate monthly reminders. noReminders map[string]struct{} + // Extra child->[]parent links (on top of the inferred ones). + addParents map[string][]string } var ( @@ -98,5 +100,9 @@ var ( // in generating monthly reports for it. "kernel": {}, }, + addParents: map[string][]string{ + // By MAINTAINERS, wireless is somewhat separate, but it's better to keep it as a net child. + "wireless": {"net"}, + }, } ) -- cgit mrf-deployment