Skip to content

Commit 18e476c

Browse files
committed
tests: cc_maintainers: update some explicit email rules
Update email maps and decrease the sensitivity to CCing authors. Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 9815538 commit 18e476c

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

tests/patch/cc_maintainers/test.py

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,22 @@
2121
ignore_emails = {
2222
'linux-kernel@vger.kernel.org', # Don't expect people to CC LKML on everything
2323
'nipa@patchwork.hopto.org', # For new files NIPA will get marked as committer
24-
'jeffrey.t.kirsher@intel.com'
24+
'jeffrey.t.kirsher@intel.com',
25+
'sln@onemain.com',
26+
'rafalo@cadence.com',
27+
'luoj@codeaurora.org',
28+
'lokeshvutla@ti.com',
29+
'grygorii.strashko@ti.com',
30+
'davem@davemloft.net',
31+
'raju.lakkaraju@microchip.com',
32+
'arvid.brodin@alten.se'
2533
}
2634

2735
# Maintainers who don't CC their co-employees
2836
maintainers = {
2937
'michael.chan@broadcom.com': ['@broadcom.com'],
3038
'huangguangbin2@huawei.com': ['@huawei.com', '@hisilicon.com'],
31-
'anthony.l.nguyen@intel.com': ['@intel.com', '@lists.osuosl.org'],
39+
'anthony.l.nguyen@intel.com': ['@intel.com', '@linux.intel.com', '@lists.osuosl.org'],
3240
'saeed@kernel.org': [
3341
'@nvidia.com', '@mellanox.com', 'leon@kernel.org', 'linux-rdma@vger.kernel.org'
3442
]
@@ -40,6 +48,14 @@
4048
'pablo@netfilter.org', 'fw@strlen.de'}
4149

4250
local_map = ["Vladimir Oltean <vladimir.oltean@nxp.com> <olteanv@gmail.com>",
51+
"Jiri Pirko <jiri@nvidia.com> <jiri@resnulli.us>",
52+
"Ido Schimmel <idosch@nvidia.com> <idosch@mellanox.com>",
53+
"Russell King <rmk+kernel@armlinux.org.uk> <linux@armlinux.org.uk>",
54+
"John Fastabend <john.r.fastabend@intel.com> <john.fastabend@gmail.com>",
55+
"Sergey Shtylyov <sergei.shtylyov@cogentembedded.com> <s.shtylyov@omp.ru>",
56+
"Arseniy Krasnov <AVKrasnov@sberdevices.ru> <avkrasnov@salutedevices.com>",
57+
"Francesco Ruggeri <fruggeri@arista.com> <fruggeri05@gmail.com>",
58+
"Willem de Bruijn <willemdebruijn.kernel@gmail.com> <willemb@google.com>",
4359
"Alexander Duyck <alexanderduyck@fb.com> <alexander.duyck@gmail.com>"]
4460

4561
#
@@ -175,7 +191,7 @@ def cc_maintainers(tree, thing, result_dir) -> Tuple[int, str, str]:
175191
ignored = set()
176192
with tempfile.NamedTemporaryFile() as fp:
177193
patch.write_out(fp)
178-
command = ['./scripts/get_maintainer.pl', '--git-min-percent', '25', '--', fp.name]
194+
command = ['./scripts/get_maintainer.pl', '--git-min-percent', '35', '--', fp.name]
179195
with subprocess.Popen(command, cwd=tree.path, stdout=subprocess.PIPE) as p:
180196
line = p.stdout.readline().decode('utf8', 'replace')
181197
while line:

0 commit comments

Comments
 (0)