USB: keep track of whether interface sysfs files exist
[linux-2.6/mini2440.git] / scripts / checkpatch.pl
blobcbb42580a81d964a69efe153749d05b4d2ac2f27
1 #!/usr/bin/perl -w
2 # (c) 2001, Dave Jones. <davej@codemonkey.org.uk> (the file handling bit)
3 # (c) 2005, Joel Schopp <jschopp@austin.ibm.com> (the ugly bit)
4 # (c) 2007, Andy Whitcroft <apw@uk.ibm.com> (new conditions, test suite, etc)
5 # Licensed under the terms of the GNU GPL License version 2
7 use strict;
9 my $P = $0;
10 $P =~ s@.*/@@g;
12 my $V = '0.11';
14 use Getopt::Long qw(:config no_auto_abbrev);
16 my $quiet = 0;
17 my $tree = 1;
18 my $chk_signoff = 1;
19 my $chk_patch = 1;
20 my $tst_type = 0;
21 my $emacs = 0;
22 my $file = 0;
23 my $check = 0;
24 my $root;
25 GetOptions(
26 'q|quiet+' => \$quiet,
27 'tree!' => \$tree,
28 'signoff!' => \$chk_signoff,
29 'patch!' => \$chk_patch,
30 'test-type!' => \$tst_type,
31 'emacs!' => \$emacs,
32 'file!' => \$file,
33 'subjective!' => \$check,
34 'strict!' => \$check,
35 'root=s' => \$root,
36 ) or exit;
38 my $exit = 0;
40 if ($#ARGV < 0) {
41 print "usage: $P [options] patchfile\n";
42 print "version: $V\n";
43 print "options: -q => quiet\n";
44 print " --no-tree => run without a kernel tree\n";
45 print " --emacs => emacs compile window format\n";
46 print " --file => check a source file\n";
47 print " --strict => enable more subjective tests\n";
48 print " --root => path to the kernel tree root\n";
49 exit(1);
52 if ($tree) {
53 if (defined $root) {
54 if (!top_of_kernel_tree($root)) {
55 die "$P: $root: --root does not point at a valid tree\n";
57 } else {
58 if (top_of_kernel_tree('.')) {
59 $root = '.';
60 } elsif ($0 =~ m@(.*)/scripts/[^/]*$@ &&
61 top_of_kernel_tree($1)) {
62 $root = $1;
66 if (!defined $root) {
67 print "Must be run from the top-level dir. of a kernel tree\n";
68 exit(2);
72 my $emitted_corrupt = 0;
74 our $Ident = qr{[A-Za-z_][A-Za-z\d_]*};
75 our $Storage = qr{extern|static|asmlinkage};
76 our $Sparse = qr{
77 __user|
78 __kernel|
79 __force|
80 __iomem|
81 __must_check|
82 __init_refok|
83 __kprobes|
84 fastcall
85 }x;
86 our $Attribute = qr{
87 const|
88 __read_mostly|
89 __kprobes|
90 __(?:mem|cpu|dev|)(?:initdata|init)
91 }x;
92 our $Inline = qr{inline|__always_inline|noinline};
93 our $NonptrType = qr{
95 (?:const\s+)?
96 (?:unsigned\s+)?
97 (?:
98 void|
99 char|
100 short|
101 int|
102 long|
103 unsigned|
104 float|
105 double|
106 bool|
107 long\s+int|
108 long\s+long|
109 long\s+long\s+int|
110 (?:__)?(?:u|s|be|le)(?:8|16|32|64)|
111 struct\s+$Ident|
112 union\s+$Ident|
113 enum\s+$Ident|
114 ${Ident}_t|
115 ${Ident}_handler|
116 ${Ident}_handler_fn
118 (?:\s+$Sparse)*
122 our $Type = qr{
123 \b$NonptrType\b
124 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
125 (?:\s+$Sparse|\s+$Attribute)*
127 our $Declare = qr{(?:$Storage\s+)?$Type};
128 our $Member = qr{->$Ident|\.$Ident|\[[^]]*\]};
129 our $Lval = qr{$Ident(?:$Member)*};
131 our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*};
132 our $Assignment = qr{(?:\*\=|/=|%=|\+=|-=|<<=|>>=|&=|\^=|\|=|=)};
133 our $Operators = qr{
134 <=|>=|==|!=|
135 =>|->|<<|>>|<|>|!|~|
136 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
139 our $Bare = '';
141 $chk_signoff = 0 if ($file);
143 my @dep_includes = ();
144 my @dep_functions = ();
145 my $removal = "Documentation/feature-removal-schedule.txt";
146 if ($tree && -f "$root/$removal") {
147 open(REMOVE, "<$root/$removal") ||
148 die "$P: $removal: open failed - $!\n";
149 while (<REMOVE>) {
150 if (/^Check:\s+(.*\S)/) {
151 for my $entry (split(/[, ]+/, $1)) {
152 if ($entry =~ m@include/(.*)@) {
153 push(@dep_includes, $1);
155 } elsif ($entry !~ m@/@) {
156 push(@dep_functions, $entry);
163 my @rawlines = ();
164 for my $filename (@ARGV) {
165 if ($file) {
166 open(FILE, "diff -u /dev/null $filename|") ||
167 die "$P: $filename: diff failed - $!\n";
168 } else {
169 open(FILE, "<$filename") ||
170 die "$P: $filename: open failed - $!\n";
172 while (<FILE>) {
173 chomp;
174 push(@rawlines, $_);
176 close(FILE);
177 if (!process($filename, @rawlines)) {
178 $exit = 1;
180 @rawlines = ();
183 exit($exit);
185 sub top_of_kernel_tree {
186 my ($root) = @_;
188 my @tree_check = (
189 "COPYING", "CREDITS", "Kbuild", "MAINTAINERS", "Makefile",
190 "README", "Documentation", "arch", "include", "drivers",
191 "fs", "init", "ipc", "kernel", "lib", "scripts",
194 foreach my $check (@tree_check) {
195 if (! -e $root . '/' . $check) {
196 return 0;
199 return 1;
202 sub expand_tabs {
203 my ($str) = @_;
205 my $res = '';
206 my $n = 0;
207 for my $c (split(//, $str)) {
208 if ($c eq "\t") {
209 $res .= ' ';
210 $n++;
211 for (; ($n % 8) != 0; $n++) {
212 $res .= ' ';
214 next;
216 $res .= $c;
217 $n++;
220 return $res;
222 sub copy_spacing {
223 my ($str) = @_;
225 my $res = '';
226 for my $c (split(//, $str)) {
227 if ($c eq "\t") {
228 $res .= $c;
229 } else {
230 $res .= ' ';
234 return $res;
237 sub line_stats {
238 my ($line) = @_;
240 # Drop the diff line leader and expand tabs
241 $line =~ s/^.//;
242 $line = expand_tabs($line);
244 # Pick the indent from the front of the line.
245 my ($white) = ($line =~ /^(\s*)/);
247 return (length($line), length($white));
250 sub sanitise_line {
251 my ($line) = @_;
253 my $res = '';
254 my $l = '';
256 my $quote = '';
258 foreach my $c (split(//, $line)) {
259 if ($l ne "\\" && ($c eq "'" || $c eq '"')) {
260 if ($quote eq '') {
261 $quote = $c;
262 $res .= $c;
263 $l = $c;
264 next;
265 } elsif ($quote eq $c) {
266 $quote = '';
269 if ($quote && $c ne "\t") {
270 $res .= "X";
271 } else {
272 $res .= $c;
275 $l = $c;
278 return $res;
281 sub ctx_block_get {
282 my ($linenr, $remain, $outer, $open, $close, $off) = @_;
283 my $line;
284 my $start = $linenr - 1;
285 my $blk = '';
286 my @o;
287 my @c;
288 my @res = ();
290 my $level = 0;
291 for ($line = $start; $remain > 0; $line++) {
292 next if ($rawlines[$line] =~ /^-/);
293 $remain--;
295 $blk .= $rawlines[$line];
296 foreach my $c (split(//, $rawlines[$line])) {
297 ##print "C<$c>L<$level><$open$close>O<$off>\n";
298 if ($off > 0) {
299 $off--;
300 next;
303 if ($c eq $close && $level > 0) {
304 $level--;
305 last if ($level == 0);
306 } elsif ($c eq $open) {
307 $level++;
311 if (!$outer || $level <= 1) {
312 push(@res, $rawlines[$line]);
315 last if ($level == 0);
318 return ($level, @res);
320 sub ctx_block_outer {
321 my ($linenr, $remain) = @_;
323 my ($level, @r) = ctx_block_get($linenr, $remain, 1, '{', '}', 0);
324 return @r;
326 sub ctx_block {
327 my ($linenr, $remain) = @_;
329 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '{', '}', 0);
330 return @r;
332 sub ctx_statement {
333 my ($linenr, $remain, $off) = @_;
335 my ($level, @r) = ctx_block_get($linenr, $remain, 0, '(', ')', $off);
336 return @r;
338 sub ctx_block_level {
339 my ($linenr, $remain) = @_;
341 return ctx_block_get($linenr, $remain, 0, '{', '}', 0);
343 sub ctx_statement_level {
344 my ($linenr, $remain, $off) = @_;
346 return ctx_block_get($linenr, $remain, 0, '(', ')', $off);
349 sub ctx_locate_comment {
350 my ($first_line, $end_line) = @_;
352 # Catch a comment on the end of the line itself.
353 my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*$@);
354 return $current_comment if (defined $current_comment);
356 # Look through the context and try and figure out if there is a
357 # comment.
358 my $in_comment = 0;
359 $current_comment = '';
360 for (my $linenr = $first_line; $linenr < $end_line; $linenr++) {
361 my $line = $rawlines[$linenr - 1];
362 #warn " $line\n";
363 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
364 $in_comment = 1;
366 if ($line =~ m@/\*@) {
367 $in_comment = 1;
369 if (!$in_comment && $current_comment ne '') {
370 $current_comment = '';
372 $current_comment .= $line . "\n" if ($in_comment);
373 if ($line =~ m@\*/@) {
374 $in_comment = 0;
378 chomp($current_comment);
379 return($current_comment);
381 sub ctx_has_comment {
382 my ($first_line, $end_line) = @_;
383 my $cmt = ctx_locate_comment($first_line, $end_line);
385 ##print "LINE: $rawlines[$end_line - 1 ]\n";
386 ##print "CMMT: $cmt\n";
388 return ($cmt ne '');
391 sub cat_vet {
392 my ($vet) = @_;
393 my ($res, $coded);
395 $res = '';
396 while ($vet =~ /([^[:cntrl:]]*)([[:cntrl:]]|$)/g) {
397 $res .= $1;
398 if ($2 ne '') {
399 $coded = sprintf("^%c", unpack('C', $2) + 64);
400 $res .= $coded;
403 $res =~ s/$/\$/;
405 return $res;
408 sub annotate_values {
409 my ($stream, $type) = @_;
411 my $res;
412 my $cur = $stream;
414 my $debug = 0;
416 print "$stream\n" if ($debug);
418 ##my $type = 'N';
419 my $pos = 0;
420 my $preprocessor = 0;
421 my $paren = 0;
422 my @paren_type;
424 # Include any user defined types we may have found as we went.
425 my $type_match = "(?:$Type$Bare)";
427 while (length($cur)) {
428 print " <$type> " if ($debug);
429 if ($cur =~ /^(\s+)/o) {
430 print "WS($1)\n" if ($debug);
431 if ($1 =~ /\n/ && $preprocessor) {
432 $preprocessor = 0;
433 $type = 'N';
436 } elsif ($cur =~ /^($type_match)/) {
437 print "DECLARE($1)\n" if ($debug);
438 $type = 'T';
440 } elsif ($cur =~ /^(#\s*define\s*$Ident)(\(?)/o) {
441 print "DEFINE($1)\n" if ($debug);
442 $preprocessor = 1;
443 $paren_type[$paren] = 'N';
445 } elsif ($cur =~ /^(#\s*(?:ifdef|ifndef|if|else|endif))/o) {
446 print "PRE($1)\n" if ($debug);
447 $preprocessor = 1;
448 $type = 'N';
450 } elsif ($cur =~ /^(\\\n)/o) {
451 print "PRECONT($1)\n" if ($debug);
453 } elsif ($cur =~ /^(sizeof)\s*(\()?/o) {
454 print "SIZEOF($1)\n" if ($debug);
455 if (defined $2) {
456 $paren_type[$paren] = 'V';
458 $type = 'N';
460 } elsif ($cur =~ /^(if|while|typeof)\b/o) {
461 print "COND($1)\n" if ($debug);
462 $paren_type[$paren] = 'N';
463 $type = 'N';
465 } elsif ($cur =~/^(return|case|else)/o) {
466 print "KEYWORD($1)\n" if ($debug);
467 $type = 'N';
469 } elsif ($cur =~ /^(\()/o) {
470 print "PAREN('$1')\n" if ($debug);
471 $paren++;
472 $type = 'N';
474 } elsif ($cur =~ /^(\))/o) {
475 $paren-- if ($paren > 0);
476 if (defined $paren_type[$paren]) {
477 $type = $paren_type[$paren];
478 undef $paren_type[$paren];
479 print "PAREN('$1') -> $type\n" if ($debug);
480 } else {
481 print "PAREN('$1')\n" if ($debug);
484 } elsif ($cur =~ /^($Ident)\(/o) {
485 print "FUNC($1)\n" if ($debug);
486 $paren_type[$paren] = 'V';
488 } elsif ($cur =~ /^($Ident|$Constant)/o) {
489 print "IDENT($1)\n" if ($debug);
490 $type = 'V';
492 } elsif ($cur =~ /^($Assignment)/o) {
493 print "ASSIGN($1)\n" if ($debug);
494 $type = 'N';
496 } elsif ($cur =~ /^(;|{|}|\?|:|\[)/o) {
497 print "END($1)\n" if ($debug);
498 $type = 'N';
500 } elsif ($cur =~ /^($Operators)/o) {
501 print "OP($1)\n" if ($debug);
502 if ($1 ne '++' && $1 ne '--') {
503 $type = 'N';
506 } elsif ($cur =~ /(^.)/o) {
507 print "C($1)\n" if ($debug);
509 if (defined $1) {
510 $cur = substr($cur, length($1));
511 $res .= $type x length($1);
515 return $res;
518 my $prefix = '';
520 my @report = ();
521 sub report {
522 push(@report, $prefix . $_[0]);
524 sub report_dump {
525 @report;
527 sub ERROR {
528 report("ERROR: $_[0]\n");
529 our $clean = 0;
530 our $cnt_error++;
532 sub WARN {
533 report("WARNING: $_[0]\n");
534 our $clean = 0;
535 our $cnt_warn++;
537 sub CHK {
538 if ($check) {
539 report("CHECK: $_[0]\n");
540 our $clean = 0;
541 our $cnt_chk++;
545 sub process {
546 my $filename = shift;
547 my @lines = @_;
549 my $linenr=0;
550 my $prevline="";
551 my $stashline="";
553 my $length;
554 my $indent;
555 my $previndent=0;
556 my $stashindent=0;
558 our $clean = 1;
559 my $signoff = 0;
560 my $is_patch = 0;
562 our $cnt_lines = 0;
563 our $cnt_error = 0;
564 our $cnt_warn = 0;
565 our $cnt_chk = 0;
567 # Trace the real file/line as we go.
568 my $realfile = '';
569 my $realline = 0;
570 my $realcnt = 0;
571 my $here = '';
572 my $in_comment = 0;
573 my $first_line = 0;
575 my $prev_values = 'N';
577 # Possible bare types.
578 my @bare = ();
580 # Pre-scan the patch looking for any __setup documentation.
581 my @setup_docs = ();
582 my $setup_docs = 0;
583 foreach my $line (@lines) {
584 if ($line=~/^\+\+\+\s+(\S+)/) {
585 $setup_docs = 0;
586 if ($1 =~ m@Documentation/kernel-parameters.txt$@) {
587 $setup_docs = 1;
589 next;
592 if ($setup_docs && $line =~ /^\+/) {
593 push(@setup_docs, $line);
597 $prefix = '';
599 foreach my $line (@lines) {
600 $linenr++;
602 my $rawline = $line;
605 #extract the filename as it passes
606 if ($line=~/^\+\+\+\s+(\S+)/) {
607 $realfile=$1;
608 $realfile =~ s@^[^/]*/@@;
609 $in_comment = 0;
610 next;
612 #extract the line range in the file after the patch is applied
613 if ($line=~/^\@\@ -\d+(?:,\d+)? \+(\d+)(,(\d+))? \@\@/) {
614 $is_patch = 1;
615 $first_line = $linenr + 1;
616 $in_comment = 0;
617 $realline=$1-1;
618 if (defined $2) {
619 $realcnt=$3+1;
620 } else {
621 $realcnt=1+1;
623 $prev_values = 'N';
624 next;
627 # track the line number as we move through the hunk, note that
628 # new versions of GNU diff omit the leading space on completely
629 # blank context lines so we need to count that too.
630 if ($line =~ /^( |\+|$)/) {
631 $realline++;
632 $realcnt-- if ($realcnt != 0);
634 # track any sort of multi-line comment. Obviously if
635 # the added text or context do not include the whole
636 # comment we will not see it. Such is life.
638 # Guestimate if this is a continuing comment. If this
639 # is the start of a diff block and this line starts
640 # ' *' then it is very likely a comment.
641 if ($linenr == $first_line and $line =~ m@^.\s*\*@) {
642 $in_comment = 1;
644 if ($line =~ m@/\*@) {
645 $in_comment = 1;
647 if ($line =~ m@\*/@) {
648 $in_comment = 0;
651 # Measure the line length and indent.
652 ($length, $indent) = line_stats($line);
654 # Track the previous line.
655 ($prevline, $stashline) = ($stashline, $line);
656 ($previndent, $stashindent) = ($stashindent, $indent);
658 } elsif ($realcnt == 1) {
659 $realcnt--;
662 #make up the handle for any error we report on this line
663 $here = "#$linenr: " if (!$file);
664 $here = "#$realline: " if ($file);
665 $here .= "FILE: $realfile:$realline:" if ($realcnt != 0);
667 my $hereline = "$here\n$line\n";
668 my $herecurr = "$here\n$line\n";
669 my $hereprev = "$here\n$prevline\n$line\n";
671 $prefix = "$filename:$realline: " if ($emacs && $file);
672 $prefix = "$filename:$linenr: " if ($emacs && !$file);
673 $cnt_lines++ if ($realcnt != 0);
675 #check the patch for a signoff:
676 if ($line =~ /^\s*signed-off-by:/i) {
677 # This is a signoff, if ugly, so do not double report.
678 $signoff++;
679 if (!($line =~ /^\s*Signed-off-by:/)) {
680 WARN("Signed-off-by: is the preferred form\n" .
681 $herecurr);
683 if ($line =~ /^\s*signed-off-by:\S/i) {
684 WARN("need space after Signed-off-by:\n" .
685 $herecurr);
689 # Check for wrappage within a valid hunk of the file
690 if ($realcnt != 0 && $line !~ m{^(?:\+|-| |$)}) {
691 ERROR("patch seems to be corrupt (line wrapped?)\n" .
692 $herecurr) if (!$emitted_corrupt++);
695 # UTF-8 regex found at http://www.w3.org/International/questions/qa-forms-utf-8.en.php
696 if (($realfile =~ /^$/ || $line =~ /^\+/) &&
697 !($line =~ m/^(
698 [\x09\x0A\x0D\x20-\x7E] # ASCII
699 | [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
700 | \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
701 | [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
702 | \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
703 | \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
704 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
705 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
706 )*$/x )) {
707 ERROR("Invalid UTF-8\n" . $herecurr);
710 #ignore lines being removed
711 if ($line=~/^-/) {next;}
713 # check we are in a valid source file if not then ignore this hunk
714 next if ($realfile !~ /\.(h|c|s|S|pl|sh)$/);
716 #trailing whitespace
717 if ($line =~ /^\+.*\015/) {
718 my $herevet = "$here\n" . cat_vet($line) . "\n";
719 ERROR("DOS line endings\n" . $herevet);
721 } elsif ($line =~ /^\+.*\S\s+$/ || $line =~ /^\+\s+$/) {
722 my $herevet = "$here\n" . cat_vet($line) . "\n";
723 ERROR("trailing whitespace\n" . $herevet);
725 #80 column limit
726 if ($line =~ /^\+/ && !($prevline=~/\/\*\*/) && $length > 80) {
727 WARN("line over 80 characters\n" . $herecurr);
730 # check we are in a valid source file *.[hc] if not then ignore this hunk
731 next if ($realfile !~ /\.[hc]$/);
733 # at the beginning of a line any tabs must come first and anything
734 # more than 8 must use tabs.
735 if ($line=~/^\+\s* \t\s*\S/ or $line=~/^\+\s* \s*/) {
736 my $herevet = "$here\n" . cat_vet($line) . "\n";
737 ERROR("use tabs not spaces\n" . $herevet);
740 # Remove comments from the line before processing.
741 my $comment_edge = ($line =~ s@/\*.*\*/@@g) +
742 ($line =~ s@/\*.*@@) +
743 ($line =~ s@^(.).*\*/@$1@);
745 # The rest of our checks refer specifically to C style
746 # only apply those _outside_ comments. Only skip
747 # lines in the middle of comments.
748 next if (!$comment_edge && $in_comment);
750 # Standardise the strings and chars within the input to simplify matching.
751 $line = sanitise_line($line);
753 # Check for potential 'bare' types
754 if ($realcnt &&
755 $line !~ /^.\s*(?:$Storage\s+)?(?:$Inline\s+)?$Type\b/ &&
756 $line !~ /$Ident:\s*$/ &&
757 $line !~ /^.\s*$Ident\s*\(/ &&
758 # definitions in global scope can only start with types
759 ($line =~ /^.(?:$Storage\s+)?(?:$Inline\s+)?($Ident)\b/ ||
760 # declarations always start with types
761 $line =~ /^.\s*(?:$Storage\s+)?($Ident)\b\s*\**\s*$Ident\s*(?:;|=)/) ||
762 # any (foo ... *) is a pointer cast, and foo is a type
763 $line =~ /\(($Ident)(?:\s+$Sparse)*\s*\*+\s*\)/) {
764 my $possible = $1;
765 if ($possible !~ /^(?:$Storage|$Type|DEFINE_\S+)$/ &&
766 $possible ne 'goto' && $possible ne 'return' &&
767 $possible ne 'struct' && $possible ne 'enum' &&
768 $possible ne 'case' && $possible ne 'else' &&
769 $possible ne 'typedef') {
770 #print "POSSIBLE<$possible>\n";
771 push(@bare, $possible);
772 my $bare = join("|", @bare);
773 $Bare = '|' . qr{
774 \b(?:$bare)\b
775 (?:\s*\*+\s*const|\s*\*+|(?:\s*\[\s*\])+)?
776 (?:\s+$Sparse)*
782 # Checks which may be anchored in the context.
785 # Check for switch () and associated case and default
786 # statements should be at the same indent.
787 if ($line=~/\bswitch\s*\(.*\)/) {
788 my $err = '';
789 my $sep = '';
790 my @ctx = ctx_block_outer($linenr, $realcnt);
791 shift(@ctx);
792 for my $ctx (@ctx) {
793 my ($clen, $cindent) = line_stats($ctx);
794 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
795 $indent != $cindent) {
796 $err .= "$sep$ctx\n";
797 $sep = '';
798 } else {
799 $sep = "[...]\n";
802 if ($err ne '') {
803 ERROR("switch and case should be at the same indent\n$hereline$err");
807 # if/while/etc brace do not go on next line, unless defining a do while loop,
808 # or if that brace on the next line is for something else
809 if ($line =~ /\b(?:(if|while|for|switch)\s*\(|do\b|else\b)/ && $line !~ /^.#/) {
810 my ($level, @ctx) = ctx_statement_level($linenr, $realcnt, 0);
811 my $ctx_ln = $linenr + $#ctx + 1;
812 my $ctx_cnt = $realcnt - $#ctx - 1;
813 my $ctx = join("\n", @ctx);
815 # Skip over any removed lines in the context following statement.
816 while ($ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^-/) {
817 $ctx_ln++;
818 $ctx_cnt--;
820 ##warn "line<$line>\nctx<$ctx>\nnext<$lines[$ctx_ln - 1]>";
822 if ($ctx !~ /{\s*/ && $ctx_cnt > 0 && $lines[$ctx_ln - 1] =~ /^\+\s*{/) {
823 ERROR("That open brace { should be on the previous line\n" .
824 "$here\n$ctx\n$lines[$ctx_ln - 1]");
826 if ($level == 0 && $ctx =~ /\)\s*\;\s*$/ && defined $lines[$ctx_ln - 1]) {
827 my ($nlength, $nindent) = line_stats($lines[$ctx_ln - 1]);
828 if ($nindent > $indent) {
829 WARN("Trailing semicolon indicates no statements, indent implies otherwise\n" .
830 "$here\n$ctx\n$lines[$ctx_ln - 1]");
835 # Track the 'values' across context and added lines.
836 my $opline = $line; $opline =~ s/^./ /;
837 my $curr_values = annotate_values($opline . "\n", $prev_values);
838 $curr_values = $prev_values . $curr_values;
839 #warn "--> $opline\n";
840 #warn "--> $curr_values ($prev_values)\n";
841 $prev_values = substr($curr_values, -1);
843 #ignore lines not being added
844 if ($line=~/^[^\+]/) {next;}
846 # TEST: allow direct testing of the type matcher.
847 if ($tst_type && $line =~ /^.$Declare$/) {
848 ERROR("TEST: is type $Declare\n" . $herecurr);
849 next;
852 # check for initialisation to aggregates open brace on the next line
853 if ($prevline =~ /$Declare\s*$Ident\s*=\s*$/ &&
854 $line =~ /^.\s*{/) {
855 ERROR("That open brace { should be on the previous line\n" . $hereprev);
859 # Checks which are anchored on the added line.
862 # check for malformed paths in #include statements (uses RAW line)
863 if ($rawline =~ m{^.#\s*include\s+[<"](.*)[">]}) {
864 my $path = $1;
865 if ($path =~ m{//}) {
866 ERROR("malformed #include filename\n" .
867 $herecurr);
869 # Sanitise this special form of string.
870 $path = 'X' x length($path);
871 $line =~ s{\<.*\>}{<$path>};
874 # no C99 // comments
875 if ($line =~ m{//}) {
876 ERROR("do not use C99 // comments\n" . $herecurr);
878 # Remove C99 comments.
879 $line =~ s@//.*@@;
880 $opline =~ s@//.*@@;
882 #EXPORT_SYMBOL should immediately follow its function closing }.
883 if (($line =~ /EXPORT_SYMBOL.*\((.*)\)/) ||
884 ($line =~ /EXPORT_UNUSED_SYMBOL.*\((.*)\)/)) {
885 my $name = $1;
886 if (($prevline !~ /^}/) &&
887 ($prevline !~ /^\+}/) &&
888 ($prevline !~ /^ }/) &&
889 ($prevline !~ /\b\Q$name\E(?:\s+$Attribute)?\s*(?:;|=)/)) {
890 WARN("EXPORT_SYMBOL(foo); should immediately follow its function/variable\n" . $herecurr);
894 # check for external initialisers.
895 if ($line =~ /^.$Type\s*$Ident\s*=\s*(0|NULL);/) {
896 ERROR("do not initialise externals to 0 or NULL\n" .
897 $herecurr);
899 # check for static initialisers.
900 if ($line =~ /\s*static\s.*=\s*(0|NULL);/) {
901 ERROR("do not initialise statics to 0 or NULL\n" .
902 $herecurr);
905 # check for new typedefs, only function parameters and sparse annotations
906 # make sense.
907 if ($line =~ /\btypedef\s/ &&
908 $line !~ /\btypedef\s+$Type\s+\(\s*\*?$Ident\s*\)\s*\(/ &&
909 $line !~ /\b__bitwise(?:__|)\b/) {
910 WARN("do not add new typedefs\n" . $herecurr);
913 # * goes on variable not on type
914 if ($line =~ m{\($NonptrType(\*+)(?:\s+const)?\)}) {
915 ERROR("\"(foo$1)\" should be \"(foo $1)\"\n" .
916 $herecurr);
918 } elsif ($line =~ m{\($NonptrType\s+(\*+)(?!\s+const)\s+\)}) {
919 ERROR("\"(foo $1 )\" should be \"(foo $1)\"\n" .
920 $herecurr);
922 } elsif ($line =~ m{$NonptrType(\*+)(?:\s+(?:$Attribute|$Sparse))?\s+[A-Za-z\d_]+}) {
923 ERROR("\"foo$1 bar\" should be \"foo $1bar\"\n" .
924 $herecurr);
926 } elsif ($line =~ m{$NonptrType\s+(\*+)(?!\s+(?:$Attribute|$Sparse))\s+[A-Za-z\d_]+}) {
927 ERROR("\"foo $1 bar\" should be \"foo $1bar\"\n" .
928 $herecurr);
931 # # no BUG() or BUG_ON()
932 # if ($line =~ /\b(BUG|BUG_ON)\b/) {
933 # print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
934 # print "$herecurr";
935 # $clean = 0;
938 # printk should use KERN_* levels. Note that follow on printk's on the
939 # same line do not need a level, so we use the current block context
940 # to try and find and validate the current printk. In summary the current
941 # printk includes all preceeding printk's which have no newline on the end.
942 # we assume the first bad printk is the one to report.
943 if ($line =~ /\bprintk\((?!KERN_)\s*"/) {
944 my $ok = 0;
945 for (my $ln = $linenr - 1; $ln >= $first_line; $ln--) {
946 #print "CHECK<$lines[$ln - 1]\n";
947 # we have a preceeding printk if it ends
948 # with "\n" ignore it, else it is to blame
949 if ($lines[$ln - 1] =~ m{\bprintk\(}) {
950 if ($rawlines[$ln - 1] !~ m{\\n"}) {
951 $ok = 1;
953 last;
956 if ($ok == 0) {
957 WARN("printk() should include KERN_ facility level\n" . $herecurr);
961 # function brace can't be on same line, except for #defines of do while,
962 # or if closed on same line
963 if (($line=~/$Type\s*[A-Za-z\d_]+\(.*\).* {/) and
964 !($line=~/\#define.*do\s{/) and !($line=~/}/)) {
965 ERROR("open brace '{' following function declarations go on the next line\n" . $herecurr);
968 # check for spaces between functions and their parentheses.
969 while ($line =~ /($Ident)\s+\(/g) {
970 if ($1 !~ /^(?:if|for|while|switch|return|volatile|__volatile__|__attribute__|format|__extension__|Copyright|case)$/ &&
971 $line !~ /$Type\s+\(/ && $line !~ /^.\#\s*define\b/) {
972 WARN("no space between function name and open parenthesis '('\n" . $herecurr);
975 # Check operator spacing.
976 if (!($line=~/\#\s*include/)) {
977 my $ops = qr{
978 <<=|>>=|<=|>=|==|!=|
979 \+=|-=|\*=|\/=|%=|\^=|\|=|&=|
980 =>|->|<<|>>|<|>|=|!|~|
981 &&|\|\||,|\^|\+\+|--|&|\||\+|-|\*|\/
983 my @elements = split(/($ops|;)/, $opline);
984 my $off = 0;
986 my $blank = copy_spacing($opline);
988 for (my $n = 0; $n < $#elements; $n += 2) {
989 $off += length($elements[$n]);
991 my $a = '';
992 $a = 'V' if ($elements[$n] ne '');
993 $a = 'W' if ($elements[$n] =~ /\s$/);
994 $a = 'B' if ($elements[$n] =~ /(\[|\()$/);
995 $a = 'O' if ($elements[$n] eq '');
996 $a = 'E' if ($elements[$n] eq '' && $n == 0);
998 my $op = $elements[$n + 1];
1000 my $c = '';
1001 if (defined $elements[$n + 2]) {
1002 $c = 'V' if ($elements[$n + 2] ne '');
1003 $c = 'W' if ($elements[$n + 2] =~ /^\s/);
1004 $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/);
1005 $c = 'O' if ($elements[$n + 2] eq '');
1006 $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/);
1007 } else {
1008 $c = 'E';
1011 # Pick up the preceeding and succeeding characters.
1012 my $ca = substr($opline, 0, $off);
1013 my $cc = '';
1014 if (length($opline) >= ($off + length($elements[$n + 1]))) {
1015 $cc = substr($opline, $off + length($elements[$n + 1]));
1017 my $cb = "$ca$;$cc";
1019 my $ctx = "${a}x${c}";
1021 my $at = "(ctx:$ctx)";
1023 my $ptr = substr($blank, 0, $off) . "^";
1024 my $hereptr = "$hereline$ptr\n";
1026 # Classify operators into binary, unary, or
1027 # definitions (* only) where they have more
1028 # than one mode.
1029 my $op_type = substr($curr_values, $off + 1, 1);
1030 my $op_left = substr($curr_values, $off, 1);
1031 my $is_unary;
1032 if ($op_type eq 'T') {
1033 $is_unary = 2;
1034 } elsif ($op_left eq 'V') {
1035 $is_unary = 0;
1036 } else {
1037 $is_unary = 1;
1039 #if ($op eq '-' || $op eq '&' || $op eq '*') {
1040 # print "UNARY: <$op_left$op_type $is_unary $a:$op:$c> <$ca:$op:$cc> <$unary_ctx>\n";
1043 # ; should have either the end of line or a space or \ after it
1044 if ($op eq ';') {
1045 if ($ctx !~ /.x[WEB]/ && $cc !~ /^\\/ &&
1046 $cc !~ /^;/) {
1047 ERROR("need space after that '$op' $at\n" . $hereptr);
1050 # // is a comment
1051 } elsif ($op eq '//') {
1053 # -> should have no spaces
1054 } elsif ($op eq '->') {
1055 if ($ctx =~ /Wx.|.xW/) {
1056 ERROR("no spaces around that '$op' $at\n" . $hereptr);
1059 # , must have a space on the right.
1060 } elsif ($op eq ',') {
1061 if ($ctx !~ /.xW|.xE/ && $cc !~ /^}/) {
1062 ERROR("need space after that '$op' $at\n" . $hereptr);
1065 # '*' as part of a type definition -- reported already.
1066 } elsif ($op eq '*' && $is_unary == 2) {
1067 #warn "'*' is part of type\n";
1069 # unary operators should have a space before and
1070 # none after. May be left adjacent to another
1071 # unary operator, or a cast
1072 } elsif ($op eq '!' || $op eq '~' ||
1073 ($is_unary && ($op eq '*' || $op eq '-' || $op eq '&'))) {
1074 if ($ctx !~ /[WEB]x./ && $ca !~ /(?:\)|!|~|\*|-|\&|\||\+\+|\-\-|\{)$/) {
1075 ERROR("need space before that '$op' $at\n" . $hereptr);
1077 if ($ctx =~ /.xW/) {
1078 ERROR("no space after that '$op' $at\n" . $hereptr);
1081 # unary ++ and unary -- are allowed no space on one side.
1082 } elsif ($op eq '++' or $op eq '--') {
1083 if ($ctx !~ /[WOB]x[^W]/ && $ctx !~ /[^W]x[WOBE]/) {
1084 ERROR("need space one side of that '$op' $at\n" . $hereptr);
1086 if ($ctx =~ /Wx./ && $cc =~ /^;/) {
1087 ERROR("no space before that '$op' $at\n" . $hereptr);
1090 # << and >> may either have or not have spaces both sides
1091 } elsif ($op eq '<<' or $op eq '>>' or
1092 $op eq '&' or $op eq '^' or $op eq '|' or
1093 $op eq '+' or $op eq '-' or
1094 $op eq '*' or $op eq '/')
1096 if ($ctx !~ /VxV|WxW|VxE|WxE|VxO/) {
1097 ERROR("need consistent spacing around '$op' $at\n" .
1098 $hereptr);
1101 # All the others need spaces both sides.
1102 } elsif ($ctx !~ /[EW]x[WE]/) {
1103 # Ignore email addresses <foo@bar>
1104 if (!($op eq '<' && $cb =~ /$;\S+\@\S+>/) &&
1105 !($op eq '>' && $cb =~ /<\S+\@\S+$;/)) {
1106 ERROR("need spaces around that '$op' $at\n" . $hereptr);
1109 $off += length($elements[$n + 1]);
1113 # check for multiple assignments
1114 if ($line =~ /^.\s*$Lval\s*=\s*$Lval\s*=(?!=)/) {
1115 CHK("multiple assignments should be avoided\n" . $herecurr);
1118 ## # check for multiple declarations, allowing for a function declaration
1119 ## # continuation.
1120 ## if ($line =~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Ident.*/ &&
1121 ## $line !~ /^.\s*$Type\s+$Ident(?:\s*=[^,{]*)?\s*,\s*$Type\s*$Ident.*/) {
1123 ## # Remove any bracketed sections to ensure we do not
1124 ## # falsly report the parameters of functions.
1125 ## my $ln = $line;
1126 ## while ($ln =~ s/\([^\(\)]*\)//g) {
1127 ## }
1128 ## if ($ln =~ /,/) {
1129 ## WARN("declaring multiple variables together should be avoided\n" . $herecurr);
1130 ## }
1131 ## }
1133 #need space before brace following if, while, etc
1134 if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
1135 $line =~ /do{/) {
1136 ERROR("need a space before the open brace '{'\n" . $herecurr);
1139 # closing brace should have a space following it when it has anything
1140 # on the line
1141 if ($line =~ /}(?!(?:,|;|\)))\S/) {
1142 ERROR("need a space after that close brace '}'\n" . $herecurr);
1145 # check spacing on square brackets
1146 if ($line =~ /\[\s/ && $line !~ /\[\s*$/) {
1147 ERROR("no space after that open square bracket '['\n" . $herecurr);
1149 if ($line =~ /\s\]/) {
1150 ERROR("no space before that close square bracket ']'\n" . $herecurr);
1153 # check spacing on paretheses
1154 if ($line =~ /\(\s/ && $line !~ /\(\s*(?:\\)?$/ &&
1155 $line !~ /for\s*\(\s+;/) {
1156 ERROR("no space after that open parenthesis '('\n" . $herecurr);
1158 if ($line =~ /\s\)/ && $line !~ /^.\s*\)/ &&
1159 $line !~ /for\s*\(.*;\s+\)/) {
1160 ERROR("no space before that close parenthesis ')'\n" . $herecurr);
1163 #goto labels aren't indented, allow a single space however
1164 if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
1165 !($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {
1166 WARN("labels should not be indented\n" . $herecurr);
1169 # Need a space before open parenthesis after if, while etc
1170 if ($line=~/\b(if|while|for|switch)\(/) {
1171 ERROR("need a space before the open parenthesis '('\n" . $herecurr);
1174 # Check for illegal assignment in if conditional.
1175 if ($line=~/\bif\s*\(.*[^<>!=]=[^=]/) {
1176 #next if ($line=~/\".*\Q$op\E.*\"/ or $line=~/\'\Q$op\E\'/);
1177 ERROR("do not use assignment in if condition\n" . $herecurr);
1180 # Check for }<nl>else {, these must be at the same
1181 # indent level to be relevant to each other.
1182 if ($prevline=~/}\s*$/ and $line=~/^.\s*else\s*/ and
1183 $previndent == $indent) {
1184 ERROR("else should follow close brace '}'\n" . $hereprev);
1187 #studly caps, commented out until figure out how to distinguish between use of existing and adding new
1188 # if (($line=~/[\w_][a-z\d]+[A-Z]/) and !($line=~/print/)) {
1189 # print "No studly caps, use _\n";
1190 # print "$herecurr";
1191 # $clean = 0;
1194 #no spaces allowed after \ in define
1195 if ($line=~/\#define.*\\\s$/) {
1196 WARN("Whitepspace after \\ makes next lines useless\n" . $herecurr);
1199 #warn if <asm/foo.h> is #included and <linux/foo.h> is available (uses RAW line)
1200 if ($tree && $rawline =~ m{^.\#\s*include\s*\<asm\/(.*)\.h\>}) {
1201 my $checkfile = "$root/include/linux/$1.h";
1202 if (-f $checkfile && $1 ne 'irq.h') {
1203 CHK("Use #include <linux/$1.h> instead of <asm/$1.h>\n" .
1204 $herecurr);
1208 # if and else should not have general statements after it
1209 if ($line =~ /^.\s*(?:}\s*)?else\b(.*)/ &&
1210 $1 !~ /^\s*(?:\sif|{|\\|$)/) {
1211 ERROR("trailing statements should be on next line\n" . $herecurr);
1214 # multi-statement macros should be enclosed in a do while loop, grab the
1215 # first statement and ensure its the whole macro if its not enclosed
1216 # in a known goot container
1217 if ($prevline =~ /\#define.*\\/ &&
1218 $prevline !~/(?:do\s+{|\(\{|\{)/ &&
1219 $line !~ /(?:do\s+{|\(\{|\{)/ &&
1220 $line !~ /^.\s*$Declare\s/) {
1221 # Grab the first statement, if that is the entire macro
1222 # its ok. This may start either on the #define line
1223 # or the one below.
1224 my $ln = $linenr;
1225 my $cnt = $realcnt;
1226 my $off = 0;
1228 # If the macro starts on the define line start
1229 # grabbing the statement after the identifier
1230 $prevline =~ m{^(.#\s*define\s*$Ident(?:\([^\)]*\))?\s*)(.*)\\\s*$};
1231 ##print "1<$1> 2<$2>\n";
1232 if (defined $2 && $2 ne '') {
1233 $off = length($1);
1234 $ln--;
1235 $cnt++;
1237 my @ctx = ctx_statement($ln, $cnt, $off);
1238 my $ctx_ln = $ln + $#ctx + 1;
1239 my $ctx = join("\n", @ctx);
1241 # Pull in any empty extension lines.
1242 while ($ctx =~ /\\$/ &&
1243 $lines[$ctx_ln - 1] =~ /^.\s*(?:\\)?$/) {
1244 $ctx .= $lines[$ctx_ln - 1];
1245 $ctx_ln++;
1248 if ($ctx =~ /\\$/) {
1249 if ($ctx =~ /;/) {
1250 ERROR("Macros with multiple statements should be enclosed in a do - while loop\n" . "$here\n$ctx\n");
1251 } else {
1252 ERROR("Macros with complex values should be enclosed in parenthesis\n" . "$here\n$ctx\n");
1257 # check for redundant bracing round if etc
1258 if ($line =~ /\b(if|while|for|else)\b/) {
1259 # Locate the end of the opening statement.
1260 my @control = ctx_statement($linenr, $realcnt, 0);
1261 my $nr = $linenr + (scalar(@control) - 1);
1262 my $cnt = $realcnt - (scalar(@control) - 1);
1264 my $off = $realcnt - $cnt;
1265 #print "$off: line<$line>end<" . $lines[$nr - 1] . ">\n";
1267 # If this is is a braced statement group check it
1268 if ($lines[$nr - 1] =~ /{\s*$/) {
1269 my ($lvl, @block) = ctx_block_level($nr, $cnt);
1271 my $stmt = join(' ', @block);
1272 $stmt =~ s/(^[^{]*){//;
1273 my $before = $1;
1274 $stmt =~ s/}([^}]*$)//;
1275 my $after = $1;
1277 #print "block<" . join(' ', @block) . "><" . scalar(@block) . ">\n";
1278 #print "stmt<$stmt>\n\n";
1280 # Count the ;'s if there is fewer than two
1281 # then there can only be one statement,
1282 # if there is a brace inside we cannot
1283 # trivially detect if its one statement.
1284 # Also nested if's often require braces to
1285 # disambiguate the else binding so shhh there.
1286 my @semi = ($stmt =~ /;/g);
1287 push(@semi, "/**/") if ($stmt =~ m@/\*@);
1288 ##print "semi<" . scalar(@semi) . ">\n";
1289 if ($lvl == 0 && scalar(@semi) < 2 &&
1290 $stmt !~ /{/ && $stmt !~ /\bif\b/ &&
1291 $before !~ /}/ && $after !~ /{/) {
1292 my $herectx = "$here\n" . join("\n", @control, @block[1 .. $#block]) . "\n";
1293 shift(@block);
1294 WARN("braces {} are not necessary for single statement blocks\n" . $herectx);
1299 # don't include deprecated include files (uses RAW line)
1300 for my $inc (@dep_includes) {
1301 if ($rawline =~ m@\#\s*include\s*\<$inc>@) {
1302 ERROR("Don't use <$inc>: see Documentation/feature-removal-schedule.txt\n" . $herecurr);
1306 # don't use deprecated functions
1307 for my $func (@dep_functions) {
1308 if ($line =~ /\b$func\b/) {
1309 ERROR("Don't use $func(): see Documentation/feature-removal-schedule.txt\n" . $herecurr);
1313 # no volatiles please
1314 my $asm_volatile = qr{\b(__asm__|asm)\s+(__volatile__|volatile)\b};
1315 if ($line =~ /\bvolatile\b/ && $line !~ /$asm_volatile/) {
1316 WARN("Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt\n" . $herecurr);
1319 # SPIN_LOCK_UNLOCKED & RW_LOCK_UNLOCKED are deprecated
1320 if ($line =~ /\b(SPIN_LOCK_UNLOCKED|RW_LOCK_UNLOCKED)/) {
1321 ERROR("Use of $1 is deprecated: see Documentation/spinlocks.txt\n" . $herecurr);
1324 # warn about #if 0
1325 if ($line =~ /^.#\s*if\s+0\b/) {
1326 CHK("if this code is redundant consider removing it\n" .
1327 $herecurr);
1330 # check for needless kfree() checks
1331 if ($prevline =~ /\bif\s*\(([^\)]*)\)/) {
1332 my $expr = $1;
1333 if ($line =~ /\bkfree\(\Q$expr\E\);/) {
1334 WARN("kfree(NULL) is safe this check is probabally not required\n" . $hereprev);
1338 # warn about #ifdefs in C files
1339 # if ($line =~ /^.#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
1340 # print "#ifdef in C files should be avoided\n";
1341 # print "$herecurr";
1342 # $clean = 0;
1345 # warn about spacing in #ifdefs
1346 if ($line =~ /^.#\s*(ifdef|ifndef|elif)\s\s+/) {
1347 ERROR("exactly one space required after that #$1\n" . $herecurr);
1350 # check for spinlock_t definitions without a comment.
1351 if ($line =~ /^.\s*(struct\s+mutex|spinlock_t)\s+\S+;/) {
1352 my $which = $1;
1353 if (!ctx_has_comment($first_line, $linenr)) {
1354 CHK("$1 definition without comment\n" . $herecurr);
1357 # check for memory barriers without a comment.
1358 if ($line =~ /\b(mb|rmb|wmb|read_barrier_depends|smp_mb|smp_rmb|smp_wmb|smp_read_barrier_depends)\(/) {
1359 if (!ctx_has_comment($first_line, $linenr)) {
1360 CHK("memory barrier without comment\n" . $herecurr);
1363 # check of hardware specific defines
1364 if ($line =~ m@^.#\s*if.*\b(__i386__|__powerpc64__|__sun__|__s390x__)\b@ && $realfile !~ m@include/asm-@) {
1365 CHK("architecture specific defines should be avoided\n" . $herecurr);
1368 # check the location of the inline attribute, that it is between
1369 # storage class and type.
1370 if ($line =~ /\b$Type\s+$Inline\b/ ||
1371 $line =~ /\b$Inline\s+$Storage\b/) {
1372 ERROR("inline keyword should sit between storage class and type\n" . $herecurr);
1375 # check for new externs in .c files.
1376 if ($line =~ /^.\s*extern\s/ && ($realfile =~ /\.c$/)) {
1377 WARN("externs should be avoided in .c files\n" . $herecurr);
1380 # checks for new __setup's
1381 if ($rawline =~ /\b__setup\("([^"]*)"/) {
1382 my $name = $1;
1384 if (!grep(/$name/, @setup_docs)) {
1385 CHK("__setup appears un-documented -- check Documentation/kernel-parameters.txt\n" . $herecurr);
1389 # check for pointless casting of kmalloc return
1390 if ($line =~ /\*\s*\)\s*k[czm]alloc\b/) {
1391 WARN("unnecessary cast may hide bugs, see http://c-faq.com/malloc/mallocnocast.html\n" . $herecurr);
1395 if ($chk_patch && !$is_patch) {
1396 ERROR("Does not appear to be a unified-diff format patch\n");
1398 if ($is_patch && $chk_signoff && $signoff == 0) {
1399 ERROR("Missing Signed-off-by: line(s)\n");
1402 if ($clean == 0 && ($chk_patch || $is_patch)) {
1403 print report_dump();
1404 if ($quiet < 2) {
1405 print "total: $cnt_error errors, $cnt_warn warnings, " .
1406 (($check)? "$cnt_chk checks, " : "") .
1407 "$cnt_lines lines checked\n";
1410 if ($clean == 1 && $quiet == 0) {
1411 print "Your patch has no obvious style problems and is ready for submission.\n"
1413 if ($clean == 0 && $quiet == 0) {
1414 print "Your patch has style problems, please review. If any of these errors\n";
1415 print "are false positives report them to the maintainer, see\n";
1416 print "CHECKPATCH in MAINTAINERS.\n";
1418 return $clean;