Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1634065 > unrolled thread

[PATCH] checkpatch: Improve the SUSPECT_CODE_INDENT test

Started byJoe Perches <joe@perches.com>
First post2017-05-02 03:10 +0200
Last post2017-05-02 03:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] checkpatch: Improve the SUSPECT_CODE_INDENT test Joe Perches <joe@perches.com> - 2017-05-02 03:10 +0200

#1634065 — [PATCH] checkpatch: Improve the SUSPECT_CODE_INDENT test

FromJoe Perches <joe@perches.com>
Date2017-05-02 03:10 +0200
Subject[PATCH] checkpatch: Improve the SUSPECT_CODE_INDENT test
Message-ID<tCuud-81c-7@gated-at.bofh.it>
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.

Signed-off-by: Joe Perches <joe@perches.com>
---
 scripts/checkpatch.pl | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 5270f7948493..e5262fefe815 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3337,7 +3337,7 @@ sub process {
 		}
 
 # 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) =
 				ctx_statement_block($linenr, $realcnt, 0)
 					if (!defined $stat);
@@ -3429,6 +3429,8 @@ sub process {
 			if ($check && $s ne '' &&
 			    (($sindent % 8) != 0 ||
 			     ($sindent < $indent) ||
+			     ($sindent == $indent &&
+			      ($s !~ /^\s*(?:\}|\{|else\b)/)) ||
 			     ($sindent > $indent + 8))) {
 				WARN("SUSPECT_CODE_INDENT",
 				     "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
-- 
2.10.0.rc2.1.g053435c

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web