From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762322Ab3JQTMS (ORCPT ); Thu, 17 Oct 2013 15:12:18 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:44633 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757861Ab3JQTMR (ORCPT ); Thu, 17 Oct 2013 15:12:17 -0400 Date: Thu, 17 Oct 2013 12:12:15 -0700 From: Andrew Morton To: David Rientjes Cc: Joe Perches , Anton Vorontsov , Michal Hocko , "Kirill A. Shutemov" , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [bug] get_maintainer.pl incomplete output Message-Id: <20131017121215.826ab6cced73118f3dba8d4f@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 3.2.0beta5 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 16 Oct 2013 20:51:18 -0700 (PDT) David Rientjes wrote: > I haven't looked closely at scripts/get_maintainer.pl, but I recently > wrote a patch touching mm/vmpressure.c and it doesn't list the file's > author, Anton Vorontsov . > > Even when I do scripts/get_maintainer.pl -f mm/vmpressure.c, his entry is > missing and git blame attributs >90% of the lines to his authorship. > > $ ./scripts/get_maintainer.pl -f mm/vmpressure.c > Tejun Heo (commit_signer:6/7=86%) > Michal Hocko (commit_signer:5/7=71%) > Andrew Morton (commit_signer:4/7=57%) > Li Zefan (commit_signer:3/7=43%) > "Kirill A. Shutemov" (commit_signer:1/7=14%) > linux-mm@kvack.org (open list:MEMORY MANAGEMENT) > linux-kernel@vger.kernel.org (open list) get_maintainer should, by default, answer the question "who should I email about this file". It clearly isn't doing this, and that's a pretty big fail. I've learned not to trust it, so when I use it I always have to check its homework with "git log | grep Author" :( Joe, pretty please?