The patch titled Subject: get_maintainer: handle file names beginning with ./ has been removed from the -mm tree. Its filename was get_maintainer-handle-file-names-beginning-with.patch This patch was dropped because an alternative patch was merged ------------------------------------------------------ From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Subject: get_maintainer: handle file names beginning with ./ The problem is that get_maintainer.pl doesn't work if you have a ./ prefix on the filename. For example, if you type: ./scripts/get_maintainer.pl -f ./drivers/usb/usb-skeleton.c then the current code only includes LKML and people from the git log, it doesn't include Greg or the linux-usb list. Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/get_maintainer.pl | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/get_maintainer.pl~get_maintainer-handle-file-names-beginning-with scripts/get_maintainer.pl --- a/scripts/get_maintainer.pl~get_maintainer-handle-file-names-beginning-with +++ a/scripts/get_maintainer.pl @@ -605,6 +605,8 @@ sub get_maintainers { foreach my $file (@files) { + $file =~ s/^\.\///; + my %hash; my $tvi = find_first_section(); while ($tvi < @typevalue) { _ Patches currently in -mm which might be from dan.carpenter@xxxxxxxxxx are mm-add-tracepoint-for-scanning-pages-fix.patch c6x-convert-to-dma_map_ops-fix.patch maintainers-fix-mic-maintainers-entry.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