* smatch_scripts/whitespace_only.sh
@ 2010-03-10 10:12 Dan Carpenter
2010-03-10 10:14 ` smatch_scripts/whitespace_only.sh Julia Lawall
0 siblings, 1 reply; 6+ messages in thread
From: Dan Carpenter @ 2010-03-10 10:12 UTC (permalink / raw)
To: linux-kernel, gregkh, kernel-janitors, devel
I wrote a script to check that a patch only changes white space.
It compiles the files before and after the patch is applied and
verifies that they are the same.
You'll need to compile smatch:
git pull git://repo.or.cz/smatch.git
make
cd /path/to/kernel/src/
/path/to/smatch_scripts/whitespace_only.sh <patch>
Adding or removing parenthesis and curly braces counts as a code
change. Changes to comments, #if 0, white space changes do not.
You can fix a lot of style violations if you limit yourself to
adding and removing tabs, spaces and new lines. Then the next
patch could remove unneeded parenthesis. It would be easier to
audit that way instead of everything mixed together.
regards,
dan carpenter
PS. I feel really bad slagging the newbies trying to help.
Could we fix checkpatch.pl to not complain about line lengths?
Also could we tell them to stay in staging where no one cares
about git blame?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: smatch_scripts/whitespace_only.sh
2010-03-10 10:12 smatch_scripts/whitespace_only.sh Dan Carpenter
@ 2010-03-10 10:14 ` Julia Lawall
2010-03-10 14:27 ` smatch_scripts/whitespace_only.sh Dan Carpenter
0 siblings, 1 reply; 6+ messages in thread
From: Julia Lawall @ 2010-03-10 10:14 UTC (permalink / raw)
To: Dan Carpenter; +Cc: linux-kernel, gregkh, kernel-janitors, devel
On Wed, 10 Mar 2010, Dan Carpenter wrote:
> I wrote a script to check that a patch only changes white space.
> It compiles the files before and after the patch is applied and
> verifies that they are the same.
>
> You'll need to compile smatch:
> git pull git://repo.or.cz/smatch.git
> make
> cd /path/to/kernel/src/
> /path/to/smatch_scripts/whitespace_only.sh <patch>
>
> Adding or removing parenthesis and curly braces counts as a code
> change. Changes to comments, #if 0, white space changes do not.
>
> You can fix a lot of style violations if you limit yourself to
> adding and removing tabs, spaces and new lines. Then the next
> patch could remove unneeded parenthesis. It would be easier to
> audit that way instead of everything mixed together.
>
> regards,
> dan carpenter
>
> PS. I feel really bad slagging the newbies trying to help.
> Could we fix checkpatch.pl to not complain about line lengths?
I hope not... Are newbies really put off by having to add a newline here
and there?
julia
> Also could we tell them to stay in staging where no one cares
> about git blame?
>
> --
> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: smatch_scripts/whitespace_only.sh
2010-03-10 10:14 ` smatch_scripts/whitespace_only.sh Julia Lawall
@ 2010-03-10 14:27 ` Dan Carpenter
2010-03-10 14:38 ` smatch_scripts/whitespace_only.sh Julia Lawall
0 siblings, 1 reply; 6+ messages in thread
From: Dan Carpenter @ 2010-03-10 14:27 UTC (permalink / raw)
To: Julia Lawall; +Cc: linux-kernel, gregkh, kernel-janitors, devel
On Wed, Mar 10, 2010 at 11:14:53AM +0100, Julia Lawall wrote:
> On Wed, 10 Mar 2010, Dan Carpenter wrote:
>
> > I wrote a script to check that a patch only changes white space.
> > It compiles the files before and after the patch is applied and
> > verifies that they are the same.
> >
> > You'll need to compile smatch:
> > git pull git://repo.or.cz/smatch.git
> > make
> > cd /path/to/kernel/src/
> > /path/to/smatch_scripts/whitespace_only.sh <patch>
> >
> > Adding or removing parenthesis and curly braces counts as a code
> > change. Changes to comments, #if 0, white space changes do not.
> >
> > You can fix a lot of style violations if you limit yourself to
> > adding and removing tabs, spaces and new lines. Then the next
> > patch could remove unneeded parenthesis. It would be easier to
> > audit that way instead of everything mixed together.
> >
> > regards,
> > dan carpenter
> >
> > PS. I feel really bad slagging the newbies trying to help.
> > Could we fix checkpatch.pl to not complain about line lengths?
>
> I hope not... Are newbies really put off by having to add a newline here
> and there?
>
> julia
>
The problem is that newbies are only too happy to chop lines up into smaller
and smaller bits. :P I've seen situations where the actual author of the code
broke up _his own_ perfectly reasonable code into tiny chunks just to satisfy
checkpatch.pl.
printk("blah blah blah blah"
"blah blah"
"blah");
It would be great if people dealt with checkpatch warnings by breaking
things out into separate functions and eliminating indent levels but
that never happens.
regards,
dan carpenter
ps: Emacs starts with an 80 character window by default. On my login
I have a ~/bin/emacs shell script that invoke real emacs as full screen.
#!/bin/sh
/usr/bin/emacs -fh -fw --no-splash $@
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: smatch_scripts/whitespace_only.sh
2010-03-10 14:27 ` smatch_scripts/whitespace_only.sh Dan Carpenter
@ 2010-03-10 14:38 ` Julia Lawall
2010-03-10 18:11 ` smatch_scripts/whitespace_only.sh Joe Perches
0 siblings, 1 reply; 6+ messages in thread
From: Julia Lawall @ 2010-03-10 14:38 UTC (permalink / raw)
To: Dan Carpenter; +Cc: linux-kernel, gregkh, kernel-janitors, devel
On Wed, 10 Mar 2010, Dan Carpenter wrote:
> On Wed, Mar 10, 2010 at 11:14:53AM +0100, Julia Lawall wrote:
> > On Wed, 10 Mar 2010, Dan Carpenter wrote:
> >
> > > I wrote a script to check that a patch only changes white space.
> > > It compiles the files before and after the patch is applied and
> > > verifies that they are the same.
> > >
> > > You'll need to compile smatch:
> > > git pull git://repo.or.cz/smatch.git
> > > make
> > > cd /path/to/kernel/src/
> > > /path/to/smatch_scripts/whitespace_only.sh <patch>
> > >
> > > Adding or removing parenthesis and curly braces counts as a code
> > > change. Changes to comments, #if 0, white space changes do not.
> > >
> > > You can fix a lot of style violations if you limit yourself to
> > > adding and removing tabs, spaces and new lines. Then the next
> > > patch could remove unneeded parenthesis. It would be easier to
> > > audit that way instead of everything mixed together.
> > >
> > > regards,
> > > dan carpenter
> > >
> > > PS. I feel really bad slagging the newbies trying to help.
> > > Could we fix checkpatch.pl to not complain about line lengths?
> >
> > I hope not... Are newbies really put off by having to add a newline here
> > and there?
> >
> > julia
> >
>
> The problem is that newbies are only too happy to chop lines up into smaller
> and smaller bits. :P I've seen situations where the actual author of the code
> broke up _his own_ perfectly reasonable code into tiny chunks just to satisfy
> checkpatch.pl.
>
> printk("blah blah blah blah"
> "blah blah"
> "blah");
>
> It would be great if people dealt with checkpatch warnings by breaking
> things out into separate functions and eliminating indent levels but
> that never happens.
Maybe checkpatch could be changed to not complain about > 80 characters
when the line contains a string?
julia
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: smatch_scripts/whitespace_only.sh
2010-03-10 14:38 ` smatch_scripts/whitespace_only.sh Julia Lawall
@ 2010-03-10 18:11 ` Joe Perches
2010-03-11 9:59 ` smatch_scripts/whitespace_only.sh Dan Carpenter
0 siblings, 1 reply; 6+ messages in thread
From: Joe Perches @ 2010-03-10 18:11 UTC (permalink / raw)
To: Julia Lawall; +Cc: Dan Carpenter, linux-kernel, gregkh, kernel-janitors, devel
On Wed, 2010-03-10 at 15:38 +0100, Julia Lawall wrote:
> > > On Wed, 10 Mar 2010, Dan Carpenter wrote:
> > > > I wrote a script to check that a patch only changes white space.
Perhaps you could use #define __LINE__ 0 to avoid
any vertical line position comparison checks?
> Maybe checkpatch could be changed to not complain about > 80 characters
> when the line contains a string?
That's been at least partially done in commit
691e669ba8c64d31ac08d87b1751e6acfa3ff65e
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: smatch_scripts/whitespace_only.sh
2010-03-10 18:11 ` smatch_scripts/whitespace_only.sh Joe Perches
@ 2010-03-11 9:59 ` Dan Carpenter
0 siblings, 0 replies; 6+ messages in thread
From: Dan Carpenter @ 2010-03-11 9:59 UTC (permalink / raw)
To: Joe Perches; +Cc: Julia Lawall, linux-kernel, gregkh, kernel-janitors, devel
On Wed, Mar 10, 2010 at 10:11:49AM -0800, Joe Perches wrote:
> On Wed, 2010-03-10 at 15:38 +0100, Julia Lawall wrote:
> > > > On Wed, 10 Mar 2010, Dan Carpenter wrote:
> > > > > I wrote a script to check that a patch only changes white space.
>
> Perhaps you could use #define __LINE__ 0 to avoid
> any vertical line position comparison checks?
>
I tried something similar to that at first but I found that line
numbers were used in other ways. In the end, I added a -no-lineno to
sparse so it thinks everything is on line 123456.
It might be better to just right a perl script that strips out all the
whitespace and compares the result blobs before and after the patch.
That would handle the #if 0 code as well.
regards,
dan carpenter
> > Maybe checkpatch could be changed to not complain about > 80 characters
> > when the line contains a string?
>
> That's been at least partially done in commit
> 691e669ba8c64d31ac08d87b1751e6acfa3ff65e
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-03-11 10:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-10 10:12 smatch_scripts/whitespace_only.sh Dan Carpenter
2010-03-10 10:14 ` smatch_scripts/whitespace_only.sh Julia Lawall
2010-03-10 14:27 ` smatch_scripts/whitespace_only.sh Dan Carpenter
2010-03-10 14:38 ` smatch_scripts/whitespace_only.sh Julia Lawall
2010-03-10 18:11 ` smatch_scripts/whitespace_only.sh Joe Perches
2010-03-11 9:59 ` smatch_scripts/whitespace_only.sh Dan Carpenter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox