All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] checkpatch: add double empty line check
@ 2012-11-16 19:41 Eilon Greenstein
  2012-11-16 19:55 ` David Rientjes
  0 siblings, 1 reply; 5+ messages in thread
From: Eilon Greenstein @ 2012-11-16 19:41 UTC (permalink / raw)
  To: Andy Whitcroft, linux-kernel; +Cc: Joe Perches, netdev

Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
---
 scripts/checkpatch.pl |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 21a9f5d..7a9c153 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3579,6 +3579,13 @@ sub process {
 			WARN("EXPORTED_WORLD_WRITABLE",
 			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
 		}
+
+# check for double empty lines
+		if ($line =~ /^\+\s*$/ &&
+		    ($prevline =~ /^\+?\s*$/ || $rawlines[$linenr] =~ /^\s*$/)) {
+			WARN("DOUBLE_EMPTY_LINE",
+			     "One empty line should be sufficient. Consider removing this one.\n" . $herecurr);
+		}
 	}
 
 	# If we have no input at all, then there is nothing to report on
-- 
1.7.9.5





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

* Re: [PATCH] checkpatch: add double empty line check
  2012-11-16 19:41 [PATCH] checkpatch: add double empty line check Eilon Greenstein
@ 2012-11-16 19:55 ` David Rientjes
  2012-11-16 20:04   ` Eilon Greenstein
  0 siblings, 1 reply; 5+ messages in thread
From: David Rientjes @ 2012-11-16 19:55 UTC (permalink / raw)
  To: Eilon Greenstein; +Cc: Andy Whitcroft, linux-kernel, Joe Perches, netdev

On Fri, 16 Nov 2012, Eilon Greenstein wrote:

> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 21a9f5d..7a9c153 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -3579,6 +3579,13 @@ sub process {
>  			WARN("EXPORTED_WORLD_WRITABLE",
>  			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
>  		}
> +
> +# check for double empty lines
> +		if ($line =~ /^\+\s*$/ &&
> +		    ($prevline =~ /^\+?\s*$/ || $rawlines[$linenr] =~ /^\s*$/)) {
> +			WARN("DOUBLE_EMPTY_LINE",
> +			     "One empty line should be sufficient. Consider removing this one.\n" . $herecurr);
> +		}
>  	}
>  
>  	# If we have no input at all, then there is nothing to report on

This is fairly common in all the acpi code where variables declared in a 
function are separated from the code in a function.

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

* Re: [PATCH] checkpatch: add double empty line check
  2012-11-16 19:55 ` David Rientjes
@ 2012-11-16 20:04   ` Eilon Greenstein
  2012-11-17  0:50     ` Joe Perches
  0 siblings, 1 reply; 5+ messages in thread
From: Eilon Greenstein @ 2012-11-16 20:04 UTC (permalink / raw)
  To: David Rientjes, Joe Perches; +Cc: Andy Whitcroft, linux-kernel, netdev

On Fri, 2012-11-16 at 11:55 -0800, David Rientjes wrote:
> On Fri, 16 Nov 2012, Eilon Greenstein wrote:
> 
> > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> > index 21a9f5d..7a9c153 100755
> > --- a/scripts/checkpatch.pl
> > +++ b/scripts/checkpatch.pl
> > @@ -3579,6 +3579,13 @@ sub process {
> >  			WARN("EXPORTED_WORLD_WRITABLE",
> >  			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
> >  		}
> > +
> > +# check for double empty lines
> > +		if ($line =~ /^\+\s*$/ &&
> > +		    ($prevline =~ /^\+?\s*$/ || $rawlines[$linenr] =~ /^\s*$/)) {
> > +			WARN("DOUBLE_EMPTY_LINE",
> > +			     "One empty line should be sufficient. Consider removing this one.\n" . $herecurr);
> > +		}
> >  	}
> >  
> >  	# If we have no input at all, then there is nothing to report on
> 
> This is fairly common in all the acpi code where variables declared in a 
> function are separated from the code in a function.
> 

Indeed, I see that you do use it in some functions.

Maybe we can limit it only to the networking tree (similar to the
networking comments style) or if the ACPI is the exception, we can apply
to all but ACPI.



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

* Re: [PATCH] checkpatch: add double empty line check
  2012-11-16 20:04   ` Eilon Greenstein
@ 2012-11-17  0:50     ` Joe Perches
  2012-11-17 11:12       ` Eilon Greenstein
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2012-11-17  0:50 UTC (permalink / raw)
  To: eilong; +Cc: David Rientjes, Andy Whitcroft, linux-kernel, netdev

On Fri, 2012-11-16 at 22:04 +0200, Eilon Greenstein wrote:
> On Fri, 2012-11-16 at 11:55 -0800, David Rientjes wrote:
> > On Fri, 16 Nov 2012, Eilon Greenstein wrote:
> > 
> > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> > > index 21a9f5d..7a9c153 100755
> > > --- a/scripts/checkpatch.pl
> > > +++ b/scripts/checkpatch.pl
> > > @@ -3579,6 +3579,13 @@ sub process {
> > >  			WARN("EXPORTED_WORLD_WRITABLE",
> > >  			     "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
> > >  		}
> > > +
> > > +# check for double empty lines
> > > +		if ($line =~ /^\+\s*$/ &&
> > > +		    ($prevline =~ /^\+?\s*$/ || $rawlines[$linenr] =~ /^\s*$/)) {
> > > +			WARN("DOUBLE_EMPTY_LINE",
> > > +			     "One empty line should be sufficient. Consider removing this one.\n" . $herecurr);
> > > +		}
> > >  	}
> > >  
> > >  	# If we have no input at all, then there is nothing to report on
> > 
> > This is fairly common in all the acpi code where variables declared in a 
> > function are separated from the code in a function.
> > 
> 
> Indeed, I see that you do use it in some functions.
> 
> Maybe we can limit it only to the networking tree (similar to the
> networking comments style) or if the ACPI is the exception, we can apply
> to all but ACPI.

I'm not sure this should be done.
Double line spacing has some utility and
is pretty common.

Perhaps make this a --strict/CHK option
and also perhaps make sure this isn't
emitted on consecutive lines.



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

* Re: [PATCH] checkpatch: add double empty line check
  2012-11-17  0:50     ` Joe Perches
@ 2012-11-17 11:12       ` Eilon Greenstein
  0 siblings, 0 replies; 5+ messages in thread
From: Eilon Greenstein @ 2012-11-17 11:12 UTC (permalink / raw)
  To: Joe Perches; +Cc: David Rientjes, Andy Whitcroft, linux-kernel, netdev

On Fri, 2012-11-16 at 16:50 -0800, Joe Perches wrote:

Hi Joe, thanks for replying.

> On Fri, 2012-11-16 at 22:04 +0200, Eilon Greenstein wrote:
> > On Fri, 2012-11-16 at 11:55 -0800, David Rientjes wrote:
> > > On Fri, 16 Nov 2012, Eilon Greenstein wrote:

> > > This is fairly common in all the acpi code where variables declared in a 
> > > function are separated from the code in a function.
> > > 
> > 
> > Indeed, I see that you do use it in some functions.
> > 
> > Maybe we can limit it only to the networking tree (similar to the
> > networking comments style) or if the ACPI is the exception, we can apply
> > to all but ACPI.
> 
> I'm not sure this should be done.
> Double line spacing has some utility and
> is pretty common.

Since adding double empty line can cause a patch to be rejected, we
should have an easy way to catch it before submitting.

> Perhaps make this a --strict/CHK option
> and also perhaps make sure this isn't
> emitted on consecutive lines.

Indeed, CHK makes more sense. I wanted to have a warning per redundant
line, but since it can be annoying when adding 3 or more empty lines
intentionally, I will issue one comment for consecutive lines.

v2 is on its way.

Thanks,
Eilon




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

end of thread, other threads:[~2012-11-17 11:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-16 19:41 [PATCH] checkpatch: add double empty line check Eilon Greenstein
2012-11-16 19:55 ` David Rientjes
2012-11-16 20:04   ` Eilon Greenstein
2012-11-17  0:50     ` Joe Perches
2012-11-17 11:12       ` Eilon Greenstein

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.