linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 1/3] get_maintainer: create filename-only regex match type
@ 2013-03-07  0:28 Stephen Warren
  2013-03-07  0:29 ` [PATCH V2 2/3] MAINTAINERS: tegra: match related files using N: not K: Stephen Warren
  2013-03-07  0:29 ` [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames Stephen Warren
  0 siblings, 2 replies; 8+ messages in thread
From: Stephen Warren @ 2013-03-07  0:28 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Joe Perches, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

From: Stephen Warren <swarren@nvidia.com>

Create a new N: entry type in MAINTAINERS which performs a regex match
against filenames; either those extracted from patch +++ or --- lines,
or those specified on the command-line using the -f option.

This provides the same benefits as using a K: regex option to match a
set of filenames (see commit eb90d08 "get_maintainer: allow keywords to
match filenames"), but without the disadvantage that "random" file
content, such as comments,  will ever match the regex.

Suggested-by: Joe Perches <joe@perches.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
v2: Corrected typo in MAINTAINERS documentation
---
 MAINTAINERS               |    3 +++
 scripts/get_maintainer.pl |    2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 9561658..c9b1e37 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -90,6 +90,9 @@ Descriptions of section entries:
 	   F:	drivers/net/*	all files in drivers/net, but not below
 	   F:	*/net/*		all files in "any top level directory"/net
 	   One pattern per line.  Multiple F: lines acceptable.
+	N: Files and directories with regex patterns.
+	   N:	[^a-z]tegra	all files whose patch contains the word tegra
+	   One pattern per line.  Multiple N: lines acceptable.
 	X: Files and directories that are NOT maintained, same rules as F:
 	   Files exclusions are tested before file matches.
 	   Can be useful for excluding a specific subdirectory, for instance:
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index ce4cc83..27dc5cb 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -611,7 +611,7 @@ sub get_maintainers {
 				    $hash{$tvi} = $value_pd;
 				}
 			    }
-			} elsif ($type eq 'K') {
+			} elsif ($type eq 'K' || $type eq 'N') {
 			    if ($file =~ m/$value/x) {
 				$hash{$tvi} = 0;
 			    }
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH V2 2/3] MAINTAINERS: tegra: match related files using N: not K:
  2013-03-07  0:28 [PATCH V2 1/3] get_maintainer: create filename-only regex match type Stephen Warren
@ 2013-03-07  0:29 ` Stephen Warren
  2013-03-07  0:29 ` [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames Stephen Warren
  1 sibling, 0 replies; 8+ messages in thread
From: Stephen Warren @ 2013-03-07  0:29 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Joe Perches, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

From: Stephen Warren <swarren@nvidia.com>

This causes the regex to be applied to filenames only, and not patch or
file content (such as comments). This should prevent e.g.
drivers/gpu/drm/nouveau/nv50_display.c from matching this entry.

Reported-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 MAINTAINERS |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index c9b1e37..2d02ab5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7851,7 +7851,7 @@ L:	linux-tegra@vger.kernel.org
 Q:	http://patchwork.ozlabs.org/project/linux-tegra/list/
 T:	git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
 S:	Supported
-K:	(?i)[^a-z]tegra
+N:	[^a-z]tegra
 
 TEHUTI ETHERNET DRIVER
 M:	Andy Gospodarek <andy@greyhouse.net>
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  0:28 [PATCH V2 1/3] get_maintainer: create filename-only regex match type Stephen Warren
  2013-03-07  0:29 ` [PATCH V2 2/3] MAINTAINERS: tegra: match related files using N: not K: Stephen Warren
@ 2013-03-07  0:29 ` Stephen Warren
  2013-03-07  0:30   ` Joe Perches
  1 sibling, 1 reply; 8+ messages in thread
From: Stephen Warren @ 2013-03-07  0:29 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Joe Perches, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

From: Stephen Warren <swarren@nvidia.com>

This reverts most of eb90d08 "get_maintainer: allow keywords to match
filenames"; all except the parts that are required to implement the new
N: entry type.

The rationale is that it's better to have K: match just patch or file
content as it previously did, and N: match just filenames, rather than
have K: math all three cases. This gives more explicit control, and
removes the temptation to use K: for filenames, and then have those
keywords accidentally match unexpected patch or file content.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
v2: New patch.
---
 MAINTAINERS               |    9 ++++-----
 scripts/get_maintainer.pl |    2 +-
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index 2d02ab5..e68a07a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -100,13 +100,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, or an affected filename.  For instance:
+	   patch or file.  For instance:
 	   K: of_get_profile
-	      matches patch or file content, or filenames, that contain
-	      "of_get_profile"
+	      matches patches or files that contain "of_get_profile"
 	   K: \b(printk|pr_(info|err))\b
-	      matches patch or file content, or filenames, that contain one or
-	      more of the words printk, pr_info or pr_err
+	      matches patches or files 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 27dc5cb..5e4fb14 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -611,7 +611,7 @@ sub get_maintainers {
 				    $hash{$tvi} = $value_pd;
 				}
 			    }
-			} elsif ($type eq 'K' || $type eq 'N') {
+			} elsif ($type eq 'N') {
 			    if ($file =~ m/$value/x) {
 				$hash{$tvi} = 0;
 			    }
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  0:29 ` [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames Stephen Warren
@ 2013-03-07  0:30   ` Joe Perches
  2013-03-07  0:34     ` Stephen Warren
  0 siblings, 1 reply; 8+ messages in thread
From: Joe Perches @ 2013-03-07  0:30 UTC (permalink / raw)
  To: Stephen Warren
  Cc: Andrew Morton, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

On Wed, 2013-03-06 at 17:29 -0700, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
> 
> This reverts most of eb90d08 "get_maintainer: allow keywords to match
> filenames"; all except the parts that are required to implement the new
> N: entry type.

Just combine patches 1 and 3 into a single patch.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  0:30   ` Joe Perches
@ 2013-03-07  0:34     ` Stephen Warren
  2013-03-07  0:40       ` Joe Perches
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Warren @ 2013-03-07  0:34 UTC (permalink / raw)
  To: Joe Perches
  Cc: Andrew Morton, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

On 03/06/2013 05:30 PM, Joe Perches wrote:
> On Wed, 2013-03-06 at 17:29 -0700, Stephen Warren wrote:
>> From: Stephen Warren <swarren@nvidia.com>
>>
>> This reverts most of eb90d08 "get_maintainer: allow keywords to match
>> filenames"; all except the parts that are required to implement the new
>> N: entry type.
> 
> Just combine patches 1 and 3 into a single patch.

That would break bisectability; using MAINTAINERS after applying a
squashed 1+3 but without patch 2 applied would not operate as desired.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  0:34     ` Stephen Warren
@ 2013-03-07  0:40       ` Joe Perches
  2013-03-07  6:47         ` Stephen Warren
  0 siblings, 1 reply; 8+ messages in thread
From: Joe Perches @ 2013-03-07  0:40 UTC (permalink / raw)
  To: Stephen Warren
  Cc: Andrew Morton, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

On Wed, 2013-03-06 at 17:34 -0700, Stephen Warren wrote:
> On 03/06/2013 05:30 PM, Joe Perches wrote:
> > On Wed, 2013-03-06 at 17:29 -0700, Stephen Warren wrote:
> >> From: Stephen Warren <swarren@nvidia.com>
> >>
> >> This reverts most of eb90d08 "get_maintainer: allow keywords to match
> >> filenames"; all except the parts that are required to implement the new
> >> N: entry type.
> > 
> > Just combine patches 1 and 3 into a single patch.
> 
> That would break bisectability; using MAINTAINERS after applying a
> squashed 1+3 but without patch 2 applied would not operate as desired.

<smile>

Which is why I showed the whole thing in a single patch.
No worries if it's simply to increase the patch count...

cheers, Joe


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  0:40       ` Joe Perches
@ 2013-03-07  6:47         ` Stephen Warren
  2013-03-07  6:55           ` Joe Perches
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Warren @ 2013-03-07  6:47 UTC (permalink / raw)
  To: Joe Perches
  Cc: Andrew Morton, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

On 03/06/2013 05:40 PM, Joe Perches wrote:
> On Wed, 2013-03-06 at 17:34 -0700, Stephen Warren wrote:
>> On 03/06/2013 05:30 PM, Joe Perches wrote:
>>> On Wed, 2013-03-06 at 17:29 -0700, Stephen Warren wrote:
>>>> From: Stephen Warren <swarren@nvidia.com>
>>>>
>>>> This reverts most of eb90d08 "get_maintainer: allow keywords to match
>>>> filenames"; all except the parts that are required to implement the new
>>>> N: entry type.
>>>
>>> Just combine patches 1 and 3 into a single patch.
>>
>> That would break bisectability; using MAINTAINERS after applying a
>> squashed 1+3 but without patch 2 applied would not operate as desired.
> 
> <smile>
> 
> Which is why I showed the whole thing in a single patch.
> No worries if it's simply to increase the patch count...

I'm not sure what showed refers to?

I guess if I squashed /everything/ into a single commit (i.e. the change
to the Tegra section in MAINTAINERS too) then there wouldn't be any
bisect issues. I really don't care about patch count. The reason for >1
patch is that there's often push-back if doing logically separate things
(adding N: feature, modifying a MAINTAINERS entry to use it, removing
part of K: feature) in a single patch...

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames
  2013-03-07  6:47         ` Stephen Warren
@ 2013-03-07  6:55           ` Joe Perches
  0 siblings, 0 replies; 8+ messages in thread
From: Joe Perches @ 2013-03-07  6:55 UTC (permalink / raw)
  To: Stephen Warren
  Cc: Andrew Morton, linux-kernel, Marcin Slusarz, Lucas Stach,
	Borislav Petkov, dri-devel, nouveau, Maarten Lankhorst,
	linux-tegra, Stephen Warren

On Wed, 2013-03-06 at 23:47 -0700, Stephen Warren wrote:
> On 03/06/2013 05:40 PM, Joe Perches wrote:
> > Which is why I showed the whole thing in a single patch.
> > No worries if it's simply to increase the patch count...
> 
> I'm not sure what showed refers to?

The changes I posted with the suggestion
https://lkml.org/lkml/2013/3/6/468

> I guess if I squashed /everything/ into a single commit (i.e. the change
> to the Tegra section in MAINTAINERS too) then there wouldn't be any
> bisect issues. I really don't care about patch count. The reason for >1
> patch is that there's often push-back if doing logically separate things
> (adding N: feature, modifying a MAINTAINERS entry to use it, removing
> part of K: feature) in a single patch...

Not from me anyway.

I think it's a single logical change and
it's trivial too.

No worries whatever happens.


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-03-07  6:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-07  0:28 [PATCH V2 1/3] get_maintainer: create filename-only regex match type Stephen Warren
2013-03-07  0:29 ` [PATCH V2 2/3] MAINTAINERS: tegra: match related files using N: not K: Stephen Warren
2013-03-07  0:29 ` [PATCH V2 3/3] get_maintainer: prevent keywords from matching filenames Stephen Warren
2013-03-07  0:30   ` Joe Perches
2013-03-07  0:34     ` Stephen Warren
2013-03-07  0:40       ` Joe Perches
2013-03-07  6:47         ` Stephen Warren
2013-03-07  6:55           ` Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).