linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V3] checkpatch: check for whitespace before semicolon at EOL
@ 2012-05-28  0:00 Eric Nelson
  2012-05-28 14:42 ` Andy Whitcroft
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Nelson @ 2012-05-28  0:00 UTC (permalink / raw)
  To: apw, akpm, linux-kernel; +Cc: linux-kbuild, joe, 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.nelson@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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] checkpatch: check for whitespace before semicolon at EOL
  2012-05-28  0:00 [PATCH V3] checkpatch: check for whitespace before semicolon at EOL Eric Nelson
@ 2012-05-28 14:42 ` Andy Whitcroft
  2012-05-28 15:12   ` Joe Perches
  2012-05-28 15:15   ` Eric Nelson
  0 siblings, 2 replies; 4+ messages in thread
From: Andy Whitcroft @ 2012-05-28 14:42 UTC (permalink / raw)
  To: Eric Nelson; +Cc: akpm, linux-kernel, linux-kbuild, joe

On Sun, May 27, 2012 at 05:00:46PM -0700, Eric Nelson wrote:
> 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.nelson@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);
> +		}
> +

Would this not also falsly trigger on 'for (foo = 10; foo; foo--) {' ?

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

-apw

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] checkpatch: check for whitespace before semicolon at EOL
  2012-05-28 14:42 ` Andy Whitcroft
@ 2012-05-28 15:12   ` Joe Perches
  2012-05-28 15:15   ` Eric Nelson
  1 sibling, 0 replies; 4+ messages in thread
From: Joe Perches @ 2012-05-28 15:12 UTC (permalink / raw)
  To: Andy Whitcroft; +Cc: Eric Nelson, akpm, linux-kernel, linux-kbuild

On Mon, 2012-05-28 at 15:42 +0100, Andy Whitcroft wrote:
> On Sun, May 27, 2012 at 05:00:46PM -0700, Eric Nelson wrote:
> > +# check for whitespace before a non-naked semicolon
> > +		if ($line =~ /^\+.*\S\s+;/) {
> > +			CHK("SPACING",
> > +			    "space prohibited before semicolon\n" . $herecurr);
> > +		}
> > +
> 
> Would this not also falsly trigger on 'for (foo = 10; foo; foo--) {' ?

No, it checks for a non-space, then requires whitespace before the semi



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] checkpatch: check for whitespace before semicolon at EOL
  2012-05-28 14:42 ` Andy Whitcroft
  2012-05-28 15:12   ` Joe Perches
@ 2012-05-28 15:15   ` Eric Nelson
  1 sibling, 0 replies; 4+ messages in thread
From: Eric Nelson @ 2012-05-28 15:15 UTC (permalink / raw)
  To: Andy Whitcroft; +Cc: akpm, linux-kernel, linux-kbuild, joe

On 05/28/2012 07:42 AM, Andy Whitcroft wrote:
> On Sun, May 27, 2012 at 05:00:46PM -0700, Eric Nelson wrote:
>> 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.nelson@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);
>> +		}
>> +
>
> Would this not also falsly trigger on 'for (foo = 10; foo; foo--) {' ?
>

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:
	+    } ;

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-05-28 15:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-28  0:00 [PATCH V3] checkpatch: check for whitespace before semicolon at EOL Eric Nelson
2012-05-28 14:42 ` Andy Whitcroft
2012-05-28 15:12   ` Joe Perches
2012-05-28 15:15   ` Eric Nelson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).