diff options
author | James Morris <jmorris@namei.org> | 2010-03-30 17:39:27 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-03-30 17:39:27 -0400 |
commit | d25d6fa1a95f465ff1ec4458ca15e30b2c8dffec (patch) | |
tree | 7362b182dedd825fc762ef7706830837e42943af /scripts | |
parent | 225a9be24d799aa16d543c31fb09f0c9ed1d9caa (diff) | |
parent | 2eaa9cfdf33b8d7fb7aff27792192e0019ae8fc6 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 78 | ||||
-rwxr-xr-x | scripts/get_maintainer.pl | 185 | ||||
-rw-r--r-- | scripts/gfp-translate | 2 | ||||
-rwxr-xr-x | scripts/kernel-doc | 5 |
4 files changed, 225 insertions, 45 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 3257d3d96767..a4d74344d805 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -145,11 +145,14 @@ our $Sparse = qr{ | |||
145 | __kprobes| | 145 | __kprobes| |
146 | __ref | 146 | __ref |
147 | }x; | 147 | }x; |
148 | |||
149 | # Notes to $Attribute: | ||
150 | # We need \b after 'init' otherwise 'initconst' will cause a false positive in a check | ||
148 | our $Attribute = qr{ | 151 | our $Attribute = qr{ |
149 | const| | 152 | const| |
150 | __read_mostly| | 153 | __read_mostly| |
151 | __kprobes| | 154 | __kprobes| |
152 | __(?:mem|cpu|dev|)(?:initdata|init)| | 155 | __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)| |
153 | ____cacheline_aligned| | 156 | ____cacheline_aligned| |
154 | ____cacheline_aligned_in_smp| | 157 | ____cacheline_aligned_in_smp| |
155 | ____cacheline_internodealigned_in_smp| | 158 | ____cacheline_internodealigned_in_smp| |
@@ -189,6 +192,14 @@ our $typeTypedefs = qr{(?x: | |||
189 | atomic_t | 192 | atomic_t |
190 | )}; | 193 | )}; |
191 | 194 | ||
195 | our $logFunctions = qr{(?x: | ||
196 | printk| | ||
197 | pr_(debug|dbg|vdbg|devel|info|warning|err|notice|alert|crit|emerg|cont)| | ||
198 | dev_(printk|dbg|vdbg|info|warn|err|notice|alert|crit|emerg|WARN)| | ||
199 | WARN| | ||
200 | panic | ||
201 | )}; | ||
202 | |||
192 | our @typeList = ( | 203 | our @typeList = ( |
193 | qr{void}, | 204 | qr{void}, |
194 | qr{(?:unsigned\s+)?char}, | 205 | qr{(?:unsigned\s+)?char}, |
@@ -1377,12 +1388,17 @@ sub process { | |||
1377 | #80 column limit | 1388 | #80 column limit |
1378 | if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && | 1389 | if ($line =~ /^\+/ && $prevrawline !~ /\/\*\*/ && |
1379 | $rawline !~ /^.\s*\*\s*\@$Ident\s/ && | 1390 | $rawline !~ /^.\s*\*\s*\@$Ident\s/ && |
1380 | $line !~ /^\+\s*printk\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ && | 1391 | $line !~ /^\+\s*$logFunctions\s*\(\s*(?:KERN_\S+\s*)?"[X\t]*"\s*(?:,|\)\s*;)\s*$/ && |
1381 | $length > 80) | 1392 | $length > 80) |
1382 | { | 1393 | { |
1383 | WARN("line over 80 characters\n" . $herecurr); | 1394 | WARN("line over 80 characters\n" . $herecurr); |
1384 | } | 1395 | } |
1385 | 1396 | ||
1397 | # check for spaces before a quoted newline | ||
1398 | if ($rawline =~ /^.*\".*\s\\n/) { | ||
1399 | WARN("unnecessary whitespace before a quoted newline\n" . $herecurr); | ||
1400 | } | ||
1401 | |||
1386 | # check for adding lines without a newline. | 1402 | # check for adding lines without a newline. |
1387 | if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) { | 1403 | if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) { |
1388 | WARN("adding a line without newline at end of file\n" . $herecurr); | 1404 | WARN("adding a line without newline at end of file\n" . $herecurr); |
@@ -1411,6 +1427,12 @@ sub process { | |||
1411 | ERROR("code indent should use tabs where possible\n" . $herevet); | 1427 | ERROR("code indent should use tabs where possible\n" . $herevet); |
1412 | } | 1428 | } |
1413 | 1429 | ||
1430 | # check for space before tabs. | ||
1431 | if ($rawline =~ /^\+/ && $rawline =~ / \t/) { | ||
1432 | my $herevet = "$here\n" . cat_vet($rawline) . "\n"; | ||
1433 | WARN("please, no space before tabs\n" . $herevet); | ||
1434 | } | ||
1435 | |||
1414 | # check we are in a valid C source file if not then ignore this hunk | 1436 | # check we are in a valid C source file if not then ignore this hunk |
1415 | next if ($realfile !~ /\.(h|c)$/); | 1437 | next if ($realfile !~ /\.(h|c)$/); |
1416 | 1438 | ||
@@ -2182,8 +2204,10 @@ sub process { | |||
2182 | # Find out how long the conditional actually is. | 2204 | # Find out how long the conditional actually is. |
2183 | my @newlines = ($c =~ /\n/gs); | 2205 | my @newlines = ($c =~ /\n/gs); |
2184 | my $cond_lines = 1 + $#newlines; | 2206 | my $cond_lines = 1 + $#newlines; |
2207 | my $stat_real = ''; | ||
2185 | 2208 | ||
2186 | my $stat_real = raw_line($linenr, $cond_lines); | 2209 | $stat_real = raw_line($linenr, $cond_lines) |
2210 | . "\n" if ($cond_lines); | ||
2187 | if (defined($stat_real) && $cond_lines > 1) { | 2211 | if (defined($stat_real) && $cond_lines > 1) { |
2188 | $stat_real = "[...]\n$stat_real"; | 2212 | $stat_real = "[...]\n$stat_real"; |
2189 | } | 2213 | } |
@@ -2348,6 +2372,8 @@ sub process { | |||
2348 | DECLARE_PER_CPU| | 2372 | DECLARE_PER_CPU| |
2349 | DEFINE_PER_CPU| | 2373 | DEFINE_PER_CPU| |
2350 | __typeof__\(| | 2374 | __typeof__\(| |
2375 | union| | ||
2376 | struct| | ||
2351 | \.$Ident\s*=\s*| | 2377 | \.$Ident\s*=\s*| |
2352 | ^\"|\"$ | 2378 | ^\"|\"$ |
2353 | }x; | 2379 | }x; |
@@ -2572,6 +2598,11 @@ sub process { | |||
2572 | WARN("plain inline is preferred over $1\n" . $herecurr); | 2598 | WARN("plain inline is preferred over $1\n" . $herecurr); |
2573 | } | 2599 | } |
2574 | 2600 | ||
2601 | # check for sizeof(&) | ||
2602 | if ($line =~ /\bsizeof\s*\(\s*\&/) { | ||
2603 | WARN("sizeof(& should be avoided\n" . $herecurr); | ||
2604 | } | ||
2605 | |||
2575 | # check for new externs in .c files. | 2606 | # check for new externs in .c files. |
2576 | if ($realfile =~ /\.c$/ && defined $stat && | 2607 | if ($realfile =~ /\.c$/ && defined $stat && |
2577 | $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s) | 2608 | $stat =~ /^.\s*(?:extern\s+)?$Type\s+($Ident)(\s*)\(/s) |
@@ -2634,9 +2665,46 @@ sub process { | |||
2634 | if ($line =~ /^.\s*__initcall\s*\(/) { | 2665 | if ($line =~ /^.\s*__initcall\s*\(/) { |
2635 | WARN("please use device_initcall() instead of __initcall()\n" . $herecurr); | 2666 | WARN("please use device_initcall() instead of __initcall()\n" . $herecurr); |
2636 | } | 2667 | } |
2637 | # check for struct file_operations, ensure they are const. | 2668 | # check for various ops structs, ensure they are const. |
2669 | my $struct_ops = qr{acpi_dock_ops| | ||
2670 | address_space_operations| | ||
2671 | backlight_ops| | ||
2672 | block_device_operations| | ||
2673 | dentry_operations| | ||
2674 | dev_pm_ops| | ||
2675 | dma_map_ops| | ||
2676 | extent_io_ops| | ||
2677 | file_lock_operations| | ||
2678 | file_operations| | ||
2679 | hv_ops| | ||
2680 | ide_dma_ops| | ||
2681 | intel_dvo_dev_ops| | ||
2682 | item_operations| | ||
2683 | iwl_ops| | ||
2684 | kgdb_arch| | ||
2685 | kgdb_io| | ||
2686 | kset_uevent_ops| | ||
2687 | lock_manager_operations| | ||
2688 | microcode_ops| | ||
2689 | mtrr_ops| | ||
2690 | neigh_ops| | ||
2691 | nlmsvc_binding| | ||
2692 | pci_raw_ops| | ||
2693 | pipe_buf_operations| | ||
2694 | platform_hibernation_ops| | ||
2695 | platform_suspend_ops| | ||
2696 | proto_ops| | ||
2697 | rpc_pipe_ops| | ||
2698 | seq_operations| | ||
2699 | snd_ac97_build_ops| | ||
2700 | soc_pcmcia_socket_ops| | ||
2701 | stacktrace_ops| | ||
2702 | sysfs_ops| | ||
2703 | tty_operations| | ||
2704 | usb_mon_operations| | ||
2705 | wd_ops}x; | ||
2638 | if ($line !~ /\bconst\b/ && | 2706 | if ($line !~ /\bconst\b/ && |
2639 | $line =~ /\bstruct\s+(file_operations|seq_operations)\b/) { | 2707 | $line =~ /\bstruct\s+($struct_ops)\b/) { |
2640 | WARN("struct $1 should normally be const\n" . | 2708 | WARN("struct $1 should normally be const\n" . |
2641 | $herecurr); | 2709 | $herecurr); |
2642 | } | 2710 | } |
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 2f3230db7ffb..6f97a13bcee4 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl | |||
@@ -41,6 +41,8 @@ my $web = 0; | |||
41 | my $subsystem = 0; | 41 | my $subsystem = 0; |
42 | my $status = 0; | 42 | my $status = 0; |
43 | my $keywords = 1; | 43 | my $keywords = 1; |
44 | my $sections = 0; | ||
45 | my $file_emails = 0; | ||
44 | my $from_filename = 0; | 46 | my $from_filename = 0; |
45 | my $pattern_depth = 0; | 47 | my $pattern_depth = 0; |
46 | my $version = 0; | 48 | my $version = 0; |
@@ -120,9 +122,11 @@ if (!GetOptions( | |||
120 | 'web!' => \$web, | 122 | 'web!' => \$web, |
121 | 'pattern-depth=i' => \$pattern_depth, | 123 | 'pattern-depth=i' => \$pattern_depth, |
122 | 'k|keywords!' => \$keywords, | 124 | 'k|keywords!' => \$keywords, |
125 | 'sections!' => \$sections, | ||
126 | 'fe|file-emails!' => \$file_emails, | ||
123 | 'f|file' => \$from_filename, | 127 | 'f|file' => \$from_filename, |
124 | 'v|version' => \$version, | 128 | 'v|version' => \$version, |
125 | 'h|help' => \$help, | 129 | 'h|help|usage' => \$help, |
126 | )) { | 130 | )) { |
127 | die "$P: invalid argument - use --help if necessary\n"; | 131 | die "$P: invalid argument - use --help if necessary\n"; |
128 | } | 132 | } |
@@ -137,9 +141,9 @@ if ($version != 0) { | |||
137 | exit 0; | 141 | exit 0; |
138 | } | 142 | } |
139 | 143 | ||
140 | if ($#ARGV < 0) { | 144 | if (-t STDIN && !@ARGV) { |
141 | usage(); | 145 | # We're talking to a terminal, but have no command line arguments. |
142 | die "$P: argument missing: patchfile or -f file please\n"; | 146 | die "$P: missing patchfile or -f file - use --help if necessary\n"; |
143 | } | 147 | } |
144 | 148 | ||
145 | if ($output_separator ne ", ") { | 149 | if ($output_separator ne ", ") { |
@@ -150,16 +154,24 @@ if ($output_rolestats) { | |||
150 | $output_roles = 1; | 154 | $output_roles = 1; |
151 | } | 155 | } |
152 | 156 | ||
153 | my $selections = $email + $scm + $status + $subsystem + $web; | 157 | if ($sections) { |
154 | if ($selections == 0) { | 158 | $email = 0; |
155 | usage(); | 159 | $email_list = 0; |
156 | die "$P: Missing required option: email, scm, status, subsystem or web\n"; | 160 | $scm = 0; |
161 | $status = 0; | ||
162 | $subsystem = 0; | ||
163 | $web = 0; | ||
164 | $keywords = 0; | ||
165 | } else { | ||
166 | my $selections = $email + $scm + $status + $subsystem + $web; | ||
167 | if ($selections == 0) { | ||
168 | die "$P: Missing required option: email, scm, status, subsystem or web\n"; | ||
169 | } | ||
157 | } | 170 | } |
158 | 171 | ||
159 | if ($email && | 172 | if ($email && |
160 | ($email_maintainer + $email_list + $email_subscriber_list + | 173 | ($email_maintainer + $email_list + $email_subscriber_list + |
161 | $email_git + $email_git_penguin_chiefs + $email_git_blame) == 0) { | 174 | $email_git + $email_git_penguin_chiefs + $email_git_blame) == 0) { |
162 | usage(); | ||
163 | die "$P: Please select at least 1 email option\n"; | 175 | die "$P: Please select at least 1 email option\n"; |
164 | } | 176 | } |
165 | 177 | ||
@@ -173,8 +185,9 @@ if (!top_of_kernel_tree($lk_path)) { | |||
173 | my @typevalue = (); | 185 | my @typevalue = (); |
174 | my %keyword_hash; | 186 | my %keyword_hash; |
175 | 187 | ||
176 | open(MAINT, "<${lk_path}MAINTAINERS") || die "$P: Can't open MAINTAINERS\n"; | 188 | open (my $maint, '<', "${lk_path}MAINTAINERS") |
177 | while (<MAINT>) { | 189 | or die "$P: Can't open MAINTAINERS: $!\n"; |
190 | while (<$maint>) { | ||
178 | my $line = $_; | 191 | my $line = $_; |
179 | 192 | ||
180 | if ($line =~ m/^(\C):\s*(.*)/) { | 193 | if ($line =~ m/^(\C):\s*(.*)/) { |
@@ -199,13 +212,14 @@ while (<MAINT>) { | |||
199 | push(@typevalue, $line); | 212 | push(@typevalue, $line); |
200 | } | 213 | } |
201 | } | 214 | } |
202 | close(MAINT); | 215 | close($maint); |
203 | 216 | ||
204 | my %mailmap; | 217 | my %mailmap; |
205 | 218 | ||
206 | if ($email_remove_duplicates) { | 219 | if ($email_remove_duplicates) { |
207 | open(MAILMAP, "<${lk_path}.mailmap") || warn "$P: Can't open .mailmap\n"; | 220 | open(my $mailmap, '<', "${lk_path}.mailmap") |
208 | while (<MAILMAP>) { | 221 | or warn "$P: Can't open .mailmap: $!\n"; |
222 | while (<$mailmap>) { | ||
209 | my $line = $_; | 223 | my $line = $_; |
210 | 224 | ||
211 | next if ($line =~ m/^\s*#/); | 225 | next if ($line =~ m/^\s*#/); |
@@ -224,7 +238,7 @@ if ($email_remove_duplicates) { | |||
224 | $mailmap{$name} = \@arr; | 238 | $mailmap{$name} = \@arr; |
225 | } | 239 | } |
226 | } | 240 | } |
227 | close(MAILMAP); | 241 | close($mailmap); |
228 | } | 242 | } |
229 | 243 | ||
230 | ## use the filenames on the command line or find the filenames in the patchfiles | 244 | ## use the filenames on the command line or find the filenames in the patchfiles |
@@ -232,31 +246,47 @@ if ($email_remove_duplicates) { | |||
232 | my @files = (); | 246 | my @files = (); |
233 | my @range = (); | 247 | my @range = (); |
234 | my @keyword_tvi = (); | 248 | my @keyword_tvi = (); |
249 | my @file_emails = (); | ||
250 | |||
251 | if (!@ARGV) { | ||
252 | push(@ARGV, "&STDIN"); | ||
253 | } | ||
235 | 254 | ||
236 | foreach my $file (@ARGV) { | 255 | foreach my $file (@ARGV) { |
237 | ##if $file is a directory and it lacks a trailing slash, add one | 256 | if ($file ne "&STDIN") { |
238 | if ((-d $file)) { | 257 | ##if $file is a directory and it lacks a trailing slash, add one |
239 | $file =~ s@([^/])$@$1/@; | 258 | if ((-d $file)) { |
240 | } elsif (!(-f $file)) { | 259 | $file =~ s@([^/])$@$1/@; |
241 | die "$P: file '${file}' not found\n"; | 260 | } elsif (!(-f $file)) { |
261 | die "$P: file '${file}' not found\n"; | ||
262 | } | ||
242 | } | 263 | } |
243 | if ($from_filename) { | 264 | if ($from_filename) { |
244 | push(@files, $file); | 265 | push(@files, $file); |
245 | if (-f $file && $keywords) { | 266 | if (-f $file && ($keywords || $file_emails)) { |
246 | open(FILE, "<$file") or die "$P: Can't open ${file}\n"; | 267 | open(my $f, '<', $file) |
247 | my $text = do { local($/) ; <FILE> }; | 268 | or die "$P: Can't open $file: $!\n"; |
248 | foreach my $line (keys %keyword_hash) { | 269 | my $text = do { local($/) ; <$f> }; |
249 | if ($text =~ m/$keyword_hash{$line}/x) { | 270 | close($f); |
250 | push(@keyword_tvi, $line); | 271 | if ($keywords) { |
272 | foreach my $line (keys %keyword_hash) { | ||
273 | if ($text =~ m/$keyword_hash{$line}/x) { | ||
274 | push(@keyword_tvi, $line); | ||
275 | } | ||
251 | } | 276 | } |
252 | } | 277 | } |
253 | close(FILE); | 278 | if ($file_emails) { |
279 | my @poss_addr = $text =~ m$[A-Za-zÀ-ÿ\"\' \,\.\+-]*\s*[\,]*\s*[\(\<\{]{0,1}[A-Za-z0-9_\.\+-]+\@[A-Za-z0-9\.-]+\.[A-Za-z0-9]+[\)\>\}]{0,1}$g; | ||
280 | push(@file_emails, clean_file_emails(@poss_addr)); | ||
281 | } | ||
254 | } | 282 | } |
255 | } else { | 283 | } else { |
256 | my $file_cnt = @files; | 284 | my $file_cnt = @files; |
257 | my $lastfile; | 285 | my $lastfile; |
258 | open(PATCH, "<$file") or die "$P: Can't open ${file}\n"; | 286 | |
259 | while (<PATCH>) { | 287 | open(my $patch, "< $file") |
288 | or die "$P: Can't open $file: $!\n"; | ||
289 | while (<$patch>) { | ||
260 | my $patch_line = $_; | 290 | my $patch_line = $_; |
261 | if (m/^\+\+\+\s+(\S+)/) { | 291 | if (m/^\+\+\+\s+(\S+)/) { |
262 | my $filename = $1; | 292 | my $filename = $1; |
@@ -276,7 +306,8 @@ foreach my $file (@ARGV) { | |||
276 | } | 306 | } |
277 | } | 307 | } |
278 | } | 308 | } |
279 | close(PATCH); | 309 | close($patch); |
310 | |||
280 | if ($file_cnt == @files) { | 311 | if ($file_cnt == @files) { |
281 | warn "$P: file '${file}' doesn't appear to be a patch. " | 312 | warn "$P: file '${file}' doesn't appear to be a patch. " |
282 | . "Add -f to options?\n"; | 313 | . "Add -f to options?\n"; |
@@ -285,6 +316,8 @@ foreach my $file (@ARGV) { | |||
285 | } | 316 | } |
286 | } | 317 | } |
287 | 318 | ||
319 | @file_emails = uniq(@file_emails); | ||
320 | |||
288 | my @email_to = (); | 321 | my @email_to = (); |
289 | my @list_to = (); | 322 | my @list_to = (); |
290 | my @scm = (); | 323 | my @scm = (); |
@@ -314,6 +347,7 @@ foreach my $file (@files) { | |||
314 | if ($type eq 'X') { | 347 | if ($type eq 'X') { |
315 | if (file_match_pattern($file, $value)) { | 348 | if (file_match_pattern($file, $value)) { |
316 | $exclude = 1; | 349 | $exclude = 1; |
350 | last; | ||
317 | } | 351 | } |
318 | } | 352 | } |
319 | } | 353 | } |
@@ -340,12 +374,28 @@ foreach my $file (@files) { | |||
340 | } | 374 | } |
341 | } | 375 | } |
342 | 376 | ||
343 | $tvi += ($end - $start); | 377 | $tvi = $end + 1; |
344 | |||
345 | } | 378 | } |
346 | 379 | ||
347 | foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) { | 380 | foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) { |
348 | add_categories($line); | 381 | add_categories($line); |
382 | if ($sections) { | ||
383 | my $i; | ||
384 | my $start = find_starting_index($line); | ||
385 | my $end = find_ending_index($line); | ||
386 | for ($i = $start; $i < $end; $i++) { | ||
387 | my $line = $typevalue[$i]; | ||
388 | if ($line =~ /^[FX]:/) { ##Restore file patterns | ||
389 | $line =~ s/([^\\])\.([^\*])/$1\?$2/g; | ||
390 | $line =~ s/([^\\])\.$/$1\?/g; ##Convert . back to ? | ||
391 | $line =~ s/\\\./\./g; ##Convert \. to . | ||
392 | $line =~ s/\.\*/\*/g; ##Convert .* to * | ||
393 | } | ||
394 | $line =~ s/^([A-Z]):/$1:\t/g; | ||
395 | print("$line\n"); | ||
396 | } | ||
397 | print("\n"); | ||
398 | } | ||
349 | } | 399 | } |
350 | 400 | ||
351 | if ($email && $email_git) { | 401 | if ($email && $email_git) { |
@@ -377,6 +427,14 @@ if ($email) { | |||
377 | } | 427 | } |
378 | } | 428 | } |
379 | } | 429 | } |
430 | |||
431 | foreach my $email (@file_emails) { | ||
432 | my ($name, $address) = parse_email($email); | ||
433 | |||
434 | my $tmp_email = format_email($name, $address, $email_usename); | ||
435 | push_email_address($tmp_email, ''); | ||
436 | add_role($tmp_email, 'in file'); | ||
437 | } | ||
380 | } | 438 | } |
381 | 439 | ||
382 | if ($email || $email_list) { | 440 | if ($email || $email_list) { |
@@ -453,6 +511,7 @@ MAINTAINER field selection options: | |||
453 | --remove-duplicates => minimize duplicate email names/addresses | 511 | --remove-duplicates => minimize duplicate email names/addresses |
454 | --roles => show roles (status:subsystem, git-signer, list, etc...) | 512 | --roles => show roles (status:subsystem, git-signer, list, etc...) |
455 | --rolestats => show roles and statistics (commits/total_commits, %) | 513 | --rolestats => show roles and statistics (commits/total_commits, %) |
514 | --file-emails => add email addresses found in -f file (default: 0 (off)) | ||
456 | --scm => print SCM tree(s) if any | 515 | --scm => print SCM tree(s) if any |
457 | --status => print status if any | 516 | --status => print status if any |
458 | --subsystem => print subsystem name if any | 517 | --subsystem => print subsystem name if any |
@@ -466,6 +525,7 @@ Output type options: | |||
466 | Other options: | 525 | Other options: |
467 | --pattern-depth => Number of pattern directory traversals (default: 0 (all)) | 526 | --pattern-depth => Number of pattern directory traversals (default: 0 (all)) |
468 | --keywords => scan patch for keywords (default: 1 (on)) | 527 | --keywords => scan patch for keywords (default: 1 (on)) |
528 | --sections => print the entire subsystem sections with pattern matches | ||
469 | --version => show version | 529 | --version => show version |
470 | --help => show this help information | 530 | --help => show this help information |
471 | 531 | ||
@@ -545,7 +605,7 @@ sub parse_email { | |||
545 | $name =~ s/^\"|\"$//g; | 605 | $name =~ s/^\"|\"$//g; |
546 | $address =~ s/^\s+|\s+$//g; | 606 | $address =~ s/^\s+|\s+$//g; |
547 | 607 | ||
548 | if ($name =~ /[^a-z0-9 \.\-]/i) { ##has "must quote" chars | 608 | if ($name =~ /[^\w \-]/i) { ##has "must quote" chars |
549 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes | 609 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes |
550 | $name = "\"$name\""; | 610 | $name = "\"$name\""; |
551 | } | 611 | } |
@@ -562,7 +622,7 @@ sub format_email { | |||
562 | $name =~ s/^\"|\"$//g; | 622 | $name =~ s/^\"|\"$//g; |
563 | $address =~ s/^\s+|\s+$//g; | 623 | $address =~ s/^\s+|\s+$//g; |
564 | 624 | ||
565 | if ($name =~ /[^a-z0-9 \.\-]/i) { ##has "must quote" chars | 625 | if ($name =~ /[^\w \-]/i) { ##has "must quote" chars |
566 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes | 626 | $name =~ s/(?<!\\)"/\\"/g; ##escape quotes |
567 | $name = "\"$name\""; | 627 | $name = "\"$name\""; |
568 | } | 628 | } |
@@ -811,7 +871,9 @@ sub add_role { | |||
811 | foreach my $entry (@email_to) { | 871 | foreach my $entry (@email_to) { |
812 | if ($email_remove_duplicates) { | 872 | if ($email_remove_duplicates) { |
813 | my ($entry_name, $entry_address) = parse_email($entry->[0]); | 873 | my ($entry_name, $entry_address) = parse_email($entry->[0]); |
814 | if ($name eq $entry_name || $address eq $entry_address) { | 874 | if (($name eq $entry_name || $address eq $entry_address) |
875 | && ($role eq "" || !($entry->[1] =~ m/$role/)) | ||
876 | ) { | ||
815 | if ($entry->[1] eq "") { | 877 | if ($entry->[1] eq "") { |
816 | $entry->[1] = "$role"; | 878 | $entry->[1] = "$role"; |
817 | } else { | 879 | } else { |
@@ -819,7 +881,9 @@ sub add_role { | |||
819 | } | 881 | } |
820 | } | 882 | } |
821 | } else { | 883 | } else { |
822 | if ($email eq $entry->[0]) { | 884 | if ($email eq $entry->[0] |
885 | && ($role eq "" || !($entry->[1] =~ m/$role/)) | ||
886 | ) { | ||
823 | if ($entry->[1] eq "") { | 887 | if ($entry->[1] eq "") { |
824 | $entry->[1] = "$role"; | 888 | $entry->[1] = "$role"; |
825 | } else { | 889 | } else { |
@@ -1099,6 +1163,51 @@ sub sort_and_uniq { | |||
1099 | return @parms; | 1163 | return @parms; |
1100 | } | 1164 | } |
1101 | 1165 | ||
1166 | sub clean_file_emails { | ||
1167 | my (@file_emails) = @_; | ||
1168 | my @fmt_emails = (); | ||
1169 | |||
1170 | foreach my $email (@file_emails) { | ||
1171 | $email =~ s/[\(\<\{]{0,1}([A-Za-z0-9_\.\+-]+\@[A-Za-z0-9\.-]+)[\)\>\}]{0,1}/\<$1\>/g; | ||
1172 | my ($name, $address) = parse_email($email); | ||
1173 | if ($name eq '"[,\.]"') { | ||
1174 | $name = ""; | ||
1175 | } | ||
1176 | |||
1177 | my @nw = split(/[^A-Za-zÀ-ÿ\'\,\.\+-]/, $name); | ||
1178 | if (@nw > 2) { | ||
1179 | my $first = $nw[@nw - 3]; | ||
1180 | my $middle = $nw[@nw - 2]; | ||
1181 | my $last = $nw[@nw - 1]; | ||
1182 | |||
1183 | if (((length($first) == 1 && $first =~ m/[A-Za-z]/) || | ||
1184 | (length($first) == 2 && substr($first, -1) eq ".")) || | ||
1185 | (length($middle) == 1 || | ||
1186 | (length($middle) == 2 && substr($middle, -1) eq "."))) { | ||
1187 | $name = "$first $middle $last"; | ||
1188 | } else { | ||
1189 | $name = "$middle $last"; | ||
1190 | } | ||
1191 | } | ||
1192 | |||
1193 | if (substr($name, -1) =~ /[,\.]/) { | ||
1194 | $name = substr($name, 0, length($name) - 1); | ||
1195 | } elsif (substr($name, -2) =~ /[,\.]"/) { | ||
1196 | $name = substr($name, 0, length($name) - 2) . '"'; | ||
1197 | } | ||
1198 | |||
1199 | if (substr($name, 0, 1) =~ /[,\.]/) { | ||
1200 | $name = substr($name, 1, length($name) - 1); | ||
1201 | } elsif (substr($name, 0, 2) =~ /"[,\.]/) { | ||
1202 | $name = '"' . substr($name, 2, length($name) - 2); | ||
1203 | } | ||
1204 | |||
1205 | my $fmt_email = format_email($name, $address, $email_usename); | ||
1206 | push(@fmt_emails, $fmt_email); | ||
1207 | } | ||
1208 | return @fmt_emails; | ||
1209 | } | ||
1210 | |||
1102 | sub merge_email { | 1211 | sub merge_email { |
1103 | my @lines; | 1212 | my @lines; |
1104 | my %saw; | 1213 | my %saw; |
@@ -1183,7 +1292,7 @@ sub rfc822_strip_comments { | |||
1183 | 1292 | ||
1184 | # valid: returns true if the parameter is an RFC822 valid address | 1293 | # valid: returns true if the parameter is an RFC822 valid address |
1185 | # | 1294 | # |
1186 | sub rfc822_valid ($) { | 1295 | sub rfc822_valid { |
1187 | my $s = rfc822_strip_comments(shift); | 1296 | my $s = rfc822_strip_comments(shift); |
1188 | 1297 | ||
1189 | if (!$rfc822re) { | 1298 | if (!$rfc822re) { |
@@ -1203,7 +1312,7 @@ sub rfc822_valid ($) { | |||
1203 | # from success with no addresses found, because an empty string is | 1312 | # from success with no addresses found, because an empty string is |
1204 | # a valid list. | 1313 | # a valid list. |
1205 | 1314 | ||
1206 | sub rfc822_validlist ($) { | 1315 | sub rfc822_validlist { |
1207 | my $s = rfc822_strip_comments(shift); | 1316 | my $s = rfc822_strip_comments(shift); |
1208 | 1317 | ||
1209 | if (!$rfc822re) { | 1318 | if (!$rfc822re) { |
diff --git a/scripts/gfp-translate b/scripts/gfp-translate index 073cb6d152a0..d81b968d864e 100644 --- a/scripts/gfp-translate +++ b/scripts/gfp-translate | |||
@@ -19,7 +19,7 @@ usage() { | |||
19 | exit 0 | 19 | exit 0 |
20 | } | 20 | } |
21 | 21 | ||
22 | # Parse command-line arguements | 22 | # Parse command-line arguments |
23 | while [ $# -gt 0 ]; do | 23 | while [ $# -gt 0 ]; do |
24 | case $1 in | 24 | case $1 in |
25 | --source) | 25 | --source) |
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 208ad3b0ca51..fcdfb245a575 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -1424,6 +1424,8 @@ sub dump_struct($$) { | |||
1424 | $nested =~ s/\/\*.*?\*\///gos; | 1424 | $nested =~ s/\/\*.*?\*\///gos; |
1425 | # strip kmemcheck_bitfield_{begin,end}.*; | 1425 | # strip kmemcheck_bitfield_{begin,end}.*; |
1426 | $members =~ s/kmemcheck_bitfield_.*?;//gos; | 1426 | $members =~ s/kmemcheck_bitfield_.*?;//gos; |
1427 | # strip attributes | ||
1428 | $members =~ s/__aligned\s*\(\d+\)//gos; | ||
1427 | 1429 | ||
1428 | create_parameterlist($members, ';', $file); | 1430 | create_parameterlist($members, ';', $file); |
1429 | check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); | 1431 | check_sections($file, $declaration_name, "struct", $sectcheck, $struct_actual, $nested); |
@@ -1728,6 +1730,7 @@ sub dump_function($$) { | |||
1728 | $prototype =~ s/^noinline +//; | 1730 | $prototype =~ s/^noinline +//; |
1729 | $prototype =~ s/__devinit +//; | 1731 | $prototype =~ s/__devinit +//; |
1730 | $prototype =~ s/__init +//; | 1732 | $prototype =~ s/__init +//; |
1733 | $prototype =~ s/__init_or_module +//; | ||
1731 | $prototype =~ s/^#\s*define\s+//; #ak added | 1734 | $prototype =~ s/^#\s*define\s+//; #ak added |
1732 | $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//; | 1735 | $prototype =~ s/__attribute__\s*\(\([a-z,]*\)\)//; |
1733 | 1736 | ||
@@ -2103,7 +2106,7 @@ sub process_file($) { | |||
2103 | $section = $newsection; | 2106 | $section = $newsection; |
2104 | } elsif (/$doc_end/) { | 2107 | } elsif (/$doc_end/) { |
2105 | 2108 | ||
2106 | if ($contents ne "") { | 2109 | if (($contents ne "") && ($contents ne "\n")) { |
2107 | dump_section($file, $section, xml_escape($contents)); | 2110 | dump_section($file, $section, xml_escape($contents)); |
2108 | $section = $section_default; | 2111 | $section = $section_default; |
2109 | $contents = ""; | 2112 | $contents = ""; |