Message ID | 1360629574-23989-1-git-send-email-swarren@wwwdotorg.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Mon, 2013-02-11 at 17:39 -0700, Stephen Warren wrote: > From: Stephen Warren <swarren@nvidia.com> > > Allow K: entries in MAINTAINERS to match directly against filenames; > either those extracted from patch +++ or --- lines, or those specified > on the command-line using the -f option. [] > diff --git a/MAINTAINERS b/MAINTAINERS [] > @@ -97,12 +97,12 @@ Descriptions of section entries: > X: net/ipv6/ > matches all files in and below net excluding net/ipv6/ > K: Keyword perl extended regex pattern to match content in a > - patch or file. For instance: > + patch, or an affected filename. For instance: The removal of file isn't correct. This should read "patch, file or filename". If the -f pattern is a single file, get_maintainer reads that file content and then matches any K: patterns. When the -f pattern is a directory, it doesn't. > K: of_get_profile > - matches patches or files that contain "of_get_profile" > + matches patches or filenames that contain "of_get_profile" here too. > K: \b(printk|pr_(info|err))\b > - matches patches or files that contain one or more of the words > - printk, pr_info or pr_err > + matches patches or filenames that contain one or more of > + the words printk, pr_info or pr_err three. cheers, Joe
On 02/11/2013 11:17 PM, Joe Perches wrote: > On Mon, 2013-02-11 at 17:39 -0700, Stephen Warren wrote: >> From: Stephen Warren <swarren@nvidia.com> >> >> Allow K: entries in MAINTAINERS to match directly against filenames; >> either those extracted from patch +++ or --- lines, or those specified >> on the command-line using the -f option. > [] >> diff --git a/MAINTAINERS b/MAINTAINERS > [] >> @@ -97,12 +97,12 @@ Descriptions of section entries: >> X: net/ipv6/ >> matches all files in and below net excluding net/ipv6/ >> K: Keyword perl extended regex pattern to match content in a >> - patch or file. For instance: >> + patch, or an affected filename. For instance: > > The removal of file isn't correct. > > This should read "patch, file or filename". > > If the -f pattern is a single file, > get_maintainer reads that file content and then > matches any K: patterns. > > When the -f pattern is a directory, it doesn't. Yes, I guess that's true; I had convinced myself that "file" wasn't accurate since "-f directory/" didn't scan the files within that directory tree, but as you say "-f file" does scan the file content. BTW, given I'm adding "filename" to the list, I intend to change the existing "file" to "file content" to be clear. Are you OK with that?
On Tue, 2013-02-12 at 11:17 -0700, Stephen Warren wrote: > On 02/11/2013 11:17 PM, Joe Perches wrote: > > If the -f pattern is a single file, > > get_maintainer reads that file content and then > > matches any K: patterns. > > > > When the -f pattern is a directory, it doesn't. > > Yes, I guess that's true; I had convinced myself that "file" wasn't > accurate since "-f directory/" didn't scan the files within that > directory tree, but as you say "-f file" does scan the file content. > > BTW, given I'm adding "filename" to the list, I intend to change the > existing "file" to "file content" to be clear. Are you OK with that? Sure.
diff --git a/MAINTAINERS b/MAINTAINERS index 1d0651e..fbba896 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -97,12 +97,12 @@ Descriptions of section entries: X: net/ipv6/ matches all files in and below net excluding net/ipv6/ K: Keyword perl extended regex pattern to match content in a - patch or file. For instance: + patch, or an affected filename. For instance: K: of_get_profile - matches patches or files that contain "of_get_profile" + matches patches or filenames that contain "of_get_profile" K: \b(printk|pr_(info|err))\b - matches patches or files that contain one or more of the words - printk, pr_info or pr_err + matches patches or filenames that contain one or more of + the words printk, pr_info or pr_err One regex pattern per line. Multiple K: lines acceptable. Note: For the hard of thinking, this list is meant to remain in alphabetical diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 18d4ab5..ce4cc83 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -611,6 +611,10 @@ sub get_maintainers { $hash{$tvi} = $value_pd; } } + } elsif ($type eq 'K') { + if ($file =~ m/$value/x) { + $hash{$tvi} = 0; + } } } }