|
21 | 21 | ignore_emails = { |
22 | 22 | 'linux-kernel@vger.kernel.org', # Don't expect people to CC LKML on everything |
23 | 23 | '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' |
25 | 33 | } |
26 | 34 |
|
27 | 35 | # Maintainers who don't CC their co-employees |
28 | 36 | maintainers = { |
29 | 37 | 'michael.chan@broadcom.com': ['@broadcom.com'], |
30 | 38 | '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'], |
32 | 40 | 'saeed@kernel.org': [ |
33 | 41 | '@nvidia.com', '@mellanox.com', 'leon@kernel.org', 'linux-rdma@vger.kernel.org' |
34 | 42 | ] |
|
40 | 48 | 'pablo@netfilter.org', 'fw@strlen.de'} |
41 | 49 |
|
42 | 50 | 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>", |
43 | 59 | "Alexander Duyck <alexanderduyck@fb.com> <alexander.duyck@gmail.com>"] |
44 | 60 |
|
45 | 61 | # |
@@ -175,7 +191,7 @@ def cc_maintainers(tree, thing, result_dir) -> Tuple[int, str, str]: |
175 | 191 | ignored = set() |
176 | 192 | with tempfile.NamedTemporaryFile() as fp: |
177 | 193 | 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] |
179 | 195 | with subprocess.Popen(command, cwd=tree.path, stdout=subprocess.PIPE) as p: |
180 | 196 | line = p.stdout.readline().decode('utf8', 'replace') |
181 | 197 | while line: |
|
0 commit comments