diff options
author | Rob Herring <robh@kernel.org> | 2022-04-29 23:38:00 +0200 |
---|---|---|
committer | akpm <akpm@linux-foundation.org> | 2022-04-29 23:38:00 +0200 |
commit | 11fb48961e5250768767612da4a303fa2f5ea504 (patch) | |
tree | ed0ad0cfda1fc806022d5804620f1fab87cf6936 /scripts | |
parent | kernel: pid_namespace: use NULL instead of using plain integer as pointer (diff) | |
download | linux-11fb48961e5250768767612da4a303fa2f5ea504.tar.xz linux-11fb48961e5250768767612da4a303fa2f5ea504.zip |
get_maintainer: Honor mailmap for in file emails
Add support to also use the mailmap for 'in file' email addresses.
Link: https://lkml.kernel.org/r/20220323193645.317514-1-robh@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Reported-by: Marc Zyngier <maz@kernel.org>
Acked-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/get_maintainer.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 6bd5221d37b8..ab123b498fd9 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -983,6 +983,7 @@ sub get_maintainers { } foreach my $email (@file_emails) { + $email = mailmap_email($email); my ($name, $address) = parse_email($email); my $tmp_email = format_email($name, $address, $email_usename); |