diff options
-rw-r--r-- | MAINTAINERS | 9 | ||||
-rwxr-xr-x | scripts/get_maintainer.pl | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 1e5c3a4ece7b..0bc4d0e3d3b5 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -97,12 +97,13 @@ Descriptions of section entries: | |||
97 | X: net/ipv6/ | 97 | X: net/ipv6/ |
98 | matches all files in and below net excluding net/ipv6/ | 98 | matches all files in and below net excluding net/ipv6/ |
99 | K: Keyword perl extended regex pattern to match content in a | 99 | K: Keyword perl extended regex pattern to match content in a |
100 | patch or file. For instance: | 100 | patch or file, or an affected filename. For instance: |
101 | K: of_get_profile | 101 | K: of_get_profile |
102 | matches patches or files that contain "of_get_profile" | 102 | matches patch or file content, or filenames, that contain |
103 | "of_get_profile" | ||
103 | K: \b(printk|pr_(info|err))\b | 104 | K: \b(printk|pr_(info|err))\b |
104 | matches patches or files that contain one or more of the words | 105 | matches patch or file content, or filenames, that contain one or |
105 | printk, pr_info or pr_err | 106 | more of the words printk, pr_info or pr_err |
106 | One regex pattern per line. Multiple K: lines acceptable. | 107 | One regex pattern per line. Multiple K: lines acceptable. |
107 | 108 | ||
108 | Note: For the hard of thinking, this list is meant to remain in alphabetical | 109 | 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 18d4ab55606b..ce4cc837b748 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl | |||
@@ -611,6 +611,10 @@ sub get_maintainers { | |||
611 | $hash{$tvi} = $value_pd; | 611 | $hash{$tvi} = $value_pd; |
612 | } | 612 | } |
613 | } | 613 | } |
614 | } elsif ($type eq 'K') { | ||
615 | if ($file =~ m/$value/x) { | ||
616 | $hash{$tvi} = 0; | ||
617 | } | ||
614 | } | 618 | } |
615 | } | 619 | } |
616 | } | 620 | } |