The patch titled Subject: get_maintainers.pl: follow renames when looking up commit signers has been added to the -mm tree. Its filename is get_maintainerspl-follow-renames-when-looking-up-commit-signers.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Ian Campbell <Ian.Campbell@xxxxxxxxxx> Subject: 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@xxxxxxxxxxxxx> (commit_signer:5/7=71%) Ian Campbell <ian.campbell@xxxxxxxxxx> (commit_signer:2/7=29%) Eric Dumazet <eric.dumazet@xxxxxxxxx> (commit_signer:1/7=14%) Jeff Kirsher <jeffrey.t.kirsher@xxxxxxxxx> (commit_signer:1/7=14%) Jiri Pirko <jpirko@xxxxxxxxxx> (commit_signer:1/7=14%) netdev@xxxxxxxxxxxxxxx (open list:NETWORKING DRIVERS) linux-kernel@xxxxxxxxxxxxxxx (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@xxxxxxxxxxxxx> (commit_signer:31/34=91%) Joe Perches <joe@xxxxxxxxxxx> (commit_signer:11/34=32%) Szymon Janc <szymon@xxxxxxxxxxx> (commit_signer:5/34=15%) Jiri Pirko <jpirko@xxxxxxxxxx> (commit_signer:3/34=9%) Paul <paul.gortmaker@xxxxxxxxxxxxx> (commit_signer:2/34=6%) netdev@xxxxxxxxxxxxxxx (open list:NETWORKING DRIVERS) linux-kernel@xxxxxxxxxxxxxxx (open list) Signed-off-by: Ian Campbell <Ian.Campbell@xxxxxxxxxx> Acked-by: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/get_maintainer.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/get_maintainer.pl~get_maintainerspl-follow-renames-when-looking-up-commit-signers scripts/get_maintainer.pl --- a/scripts/get_maintainer.pl~get_maintainerspl-follow-renames-when-looking-up-commit-signers +++ a/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' . _ Subject: Subject: get_maintainers.pl: follow renames when looking up commit signers Patches currently in -mm which might be from Ian.Campbell@xxxxxxxxxx are get_maintainerspl-follow-renames-when-looking-up-commit-signers.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html