From: Joe Perches <joe@perches.com>
To: Edwin van Vliet <edwin@cheatah.nl>
Cc: apw@canonical.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] scripts/checkpatch.pl: added test for repeated lines
Date: Sun, 10 Jul 2011 11:49:58 -0700 [thread overview]
Message-ID: <1310323798.3848.48.camel@Joe-Laptop> (raw)
In-Reply-To: <1310321889-25943-1-git-send-email-edwin@cheatah.nl>
On Sun, 2011-07-10 at 20:18 +0200, Edwin van Vliet wrote:
> Repeated lines may indicate a bug or code that needs clarification. If the
> repeated line is intentional, an extra comment may be helpful for reviewers
> since the repeated pattern is likely to draw attention.
[]
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -1479,6 +1479,11 @@ sub process {
> +# check for repeated lines which may indicate bugs or lack of clarity
> + if ($rawline eq $prevrawline) {
> + WARN("repeated line\n" . $herecurr);
> + }
> +
Interest concept, but I think it needs to check for
comment lines and blank lines and such.
Also, there are uses of appropriate multiple close braces
on consecutive lines like:
switch (foo) {
case bar: {
etc...
}
}
next prev parent reply other threads:[~2011-07-10 18:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-10 18:18 [PATCH] scripts/checkpatch.pl: added test for repeated lines Edwin van Vliet
2011-07-10 18:49 ` Joe Perches [this message]
2011-07-10 20:23 ` Edwin van Vliet
2011-07-10 22:35 ` Joe Perches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1310323798.3848.48.camel@Joe-Laptop \
--to=joe@perches.com \
--cc=apw@canonical.com \
--cc=edwin@cheatah.nl \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox