mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	checkpatch: improve the SUSPECT_CODE_INDENT test
The current SUSPECT_CODE_INDENT test does not recognize several defective code style defects where code following a logical test is inappropriately indented. Before this patch, for code like: if (foo) bar(); checkpatch would not emit a warning. Improve the test to warn when code after a logical test has the same indentation as the logical test. Perform the same indentation test for "else" blocks too. Link: http://lkml.kernel.org/r/df2374b68c4a68af2b7ef08afe486584811f610a.1493683942.git.joe@perches.com Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									74fd4f347b
								
							
						
					
					
						commit
						f6950a735f
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -3354,7 +3354,7 @@ sub process {
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Check relative indent for conditionals and blocks.
 | 
					# Check relative indent for conditionals and blocks.
 | 
				
			||||||
		if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|do\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
 | 
							if ($line =~ /\b(?:(?:if|while|for|(?:[a-z_]+|)for_each[a-z_]+)\s*\(|(?:do|else)\b)/ && $line !~ /^.\s*#/ && $line !~ /\}\s*while\s*/) {
 | 
				
			||||||
			($stat, $cond, $line_nr_next, $remain_next, $off_next) =
 | 
								($stat, $cond, $line_nr_next, $remain_next, $off_next) =
 | 
				
			||||||
				ctx_statement_block($linenr, $realcnt, 0)
 | 
									ctx_statement_block($linenr, $realcnt, 0)
 | 
				
			||||||
					if (!defined $stat);
 | 
										if (!defined $stat);
 | 
				
			||||||
| 
						 | 
					@ -3446,6 +3446,8 @@ sub process {
 | 
				
			||||||
			if ($check && $s ne '' &&
 | 
								if ($check && $s ne '' &&
 | 
				
			||||||
			    (($sindent % 8) != 0 ||
 | 
								    (($sindent % 8) != 0 ||
 | 
				
			||||||
			     ($sindent < $indent) ||
 | 
								     ($sindent < $indent) ||
 | 
				
			||||||
 | 
								     ($sindent == $indent &&
 | 
				
			||||||
 | 
								      ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
 | 
				
			||||||
			     ($sindent > $indent + 8))) {
 | 
								     ($sindent > $indent + 8))) {
 | 
				
			||||||
				WARN("SUSPECT_CODE_INDENT",
 | 
									WARN("SUSPECT_CODE_INDENT",
 | 
				
			||||||
				     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
 | 
									     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue