lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 11 Nov 2011 07:59:26 +0000
From:	Ian Campbell <Ian.Campbell@...rix.com>
To:	Andrew Morton <akpm@...ux-foundation.org>,
	Joe Perches <joe@...ches.com>
CC:	linux-kernel@...r.kernel.org
Subject: [PATCH] get_maintainers.pl: Follow renames when looking up commit
 signers

I happen to have had a commit to various network drivers since the big
renaming/reorg which happened to drivers/net recently. This means that I
now appear to be in the top few commit signers (by %age) for many of
them so am getting sent all sorts of stuff and people who are involved
with the driver are not. e.g. (to pick one at random):

        $ ./scripts/get_maintainer.pl -f drivers/net/ethernet/nvidia/forcedeth.c
        "David S. Miller" <davem@...emloft.net> (commit_signer:5/7=71%)
        Ian Campbell <ian.campbell@...rix.com> (commit_signer:2/7=29%)
        Eric Dumazet <eric.dumazet@...il.com> (commit_signer:1/7=14%)
        Jeff Kirsher <jeffrey.t.kirsher@...el.com> (commit_signer:1/7=14%)
        Jiri Pirko <jpirko@...hat.com> (commit_signer:1/7=14%)
        netdev@...r.kernel.org (open list:NETWORKING DRIVERS)
        linux-kernel@...r.kernel.org (open list)

With the following patch the renames are followed and the result appears
much more sensible:

        $ ./scripts/get_maintainer.pl -f drivers/net/ethernet/nvidia/forcedeth.c
        "David S. Miller" <davem@...emloft.net> (commit_signer:31/34=91%)
        Joe Perches <joe@...ches.com> (commit_signer:11/34=32%)
        Szymon Janc <szymon@...c.net.pl> (commit_signer:5/34=15%)
        Jiri Pirko <jpirko@...hat.com> (commit_signer:3/34=9%)
        Paul <paul.gortmaker@...driver.com> (commit_signer:2/34=6%)
        netdev@...r.kernel.org (open list:NETWORKING DRIVERS)
        linux-kernel@...r.kernel.org (open list)
        
Signed-off-by: Ian.Campbell@...rix.com

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 4594f33..f32a04c 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -95,7 +95,7 @@ my %VCS_cmds_git = (
     "execute_cmd" => \&git_execute_cmd,
     "available" => '(which("git") ne "") && (-d ".git")',
     "find_signers_cmd" =>
-	"git log --no-color --since=\$email_git_since " .
+	"git log --no-color --follow --since=\$email_git_since " .
 	    '--format="GitCommit: %H%n' .
 		      'GitAuthor: %an <%ae>%n' .
 		      'GitDate: %aD%n' .


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ