From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgciQ-00068y-Q0 for qemu-devel@nongnu.org; Tue, 21 Oct 2014 12:55:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XgciL-0006XQ-9e for qemu-devel@nongnu.org; Tue, 21 Oct 2014 12:55:22 -0400 Received: from omzsmtpe04.verizonbusiness.com ([199.249.25.207]:29915) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XgciL-0006WJ-4J for qemu-devel@nongnu.org; Tue, 21 Oct 2014 12:55:17 -0400 From: Don Slutz Message-ID: <54468FF0.80308@terremark.com> Date: Tue, 21 Oct 2014 12:55:12 -0400 MIME-Version: 1.0 References: <1413891300-23369-1-git-send-email-mst@redhat.com> In-Reply-To: <1413891300-23369-1-git-send-email-mst@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] scripts/get_maintainer.pl: allow "odd fixes" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" , qemu-devel@nongnu.org Cc: Peter Maydell , Paolo Bonzini , Gerd Hoffmann , Markus Armbruster On 10/21/14 07:35, Michael S. Tsirkin wrote: > We have a bunch of modules in "Odd fixes" > status, scripts/get_maintainer.pl ignores that. > > Reported-by: Gerd Hoffmann > Cc: Paolo Bonzini > Cc: Peter Maydell > Cc: Markus Armbruster > Signed-off-by: Michael S. Tsirkin > --- > scripts/get_maintainer.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl > index 38334de..d5eee8c 100755 > --- a/scripts/get_maintainer.pl > +++ b/scripts/get_maintainer.pl > @@ -514,7 +514,7 @@ sub range_is_maintained { > my $type = $1; > my $value = $2; > if ($type eq 'S') { > - if ($value =~ /(maintain|support)/i) { > + if ($value =~ /(maintain|support|fix)/i) { > return 1; > } > } Looks good to me. Reviewed-by: Don Slutz -Don Slutz