Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[PATCH V3] checkpatch: check for whitespace before semicolon at EOL

0 views
Skip to first unread message

Eric Nelson

unread,
May 27, 2012, 8:01:30 PM5/27/12
to a...@canonical.com, ak...@linux-foundation.org, linux-...@vger.kernel.org, linux-...@vger.kernel.org, j...@perches.com, Eric Nelson
Requires --strict option during invocation:
~/linux$ scripts/checkpatch --strict foo.patch

This tests for a bad habits of mine like this:

return 0 ;

Note that it does allow a special case of a bare semicolon
for empty loops:

while (foo())
;

Signed-off-by: Eric Nelson <eric....@boundarydevices.com>
---
scripts/checkpatch.pl | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index faea0ec..2262e1f 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2448,6 +2448,13 @@ sub process {
"space prohibited between function name and open parenthesis '('\n" . $herecurr);
}
}
+
+# check for whitespace before a non-naked semicolon
+ if ($line =~ /^\+.*\S\s+;/) {
+ CHK("SPACING",
+ "space prohibited before semicolon\n" . $herecurr);
+ }
+
# Check operator spacing.
if (!($line=~/\#\s*include/)) {
my $ops = qr{
--
1.7.9

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

Andy Whitcroft

unread,
May 28, 2012, 10:43:10 AM5/28/12
to Eric Nelson, ak...@linux-foundation.org, linux-...@vger.kernel.org, linux-...@vger.kernel.org, j...@perches.com
Would this not also falsly trigger on 'for (foo = 10; foo; foo--) {' ?

> # Check operator spacing.
> if (!($line=~/\#\s*include/)) {
> my $ops = qr{

-apw

Eric Nelson

unread,
May 28, 2012, 11:15:25 AM5/28/12
to Andy Whitcroft, ak...@linux-foundation.org, linux-...@vger.kernel.org, linux-...@vger.kernel.org, j...@perches.com
No, because there's no space before any of the semicolons.

I ran this against the last 1500 commits in the kernel and the
only case I found which seemed questionable was a fragment
like this:
for (foo=10; ; foo--) {

This points out that my commit message is wrong because it
doesn't only check at EOL (V1 did).

My testing also generated a large number of warnings like this for
patch 89812fc81f8d62d70433a8ff63d26819f372e8ec.

CHECK: space prohibited before semicolon
#2459: FILE: tools/perf/util/parse-events-flex.c:439:
+ } ;
0 new messages