From: Stefan Hajnoczi <stefanha@redhat.com>
To: Su Hang <suhang16@mails.ucas.ac.cn>
Cc: thuth@redhat.com, eblake@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v3] scripts/checkpatch.pl: add check for `while` and `for`
Date: Fri, 2 Mar 2018 11:29:11 +0000 [thread overview]
Message-ID: <20180302112911.GE6026@stefanha-x1.localdomain> (raw)
In-Reply-To: <1519788689-11967-1-git-send-email-suhang16@mails.ucas.ac.cn>
[-- Attachment #1: Type: text/plain, Size: 1932 bytes --]
On Wed, Feb 28, 2018 at 11:31:29AM +0800, Su Hang wrote:
> Adding check for `while` and `for` statements, which condition has more than
> one line.
>
> The former checkpatch.pl can check `if` statement, which condition has more
> than one line, whether block misses brace round, like this:
> '''
> if (cond1 ||
> cond2)
> statement;
> '''
> But it doesn't do the same check for `for` and `while` statements.
>
> Using `(?:...)` instead of `(...)` in regex pattern catch.
> Because `(?:...)` is faster and avoids unwanted side-effect.
This patch doesn't apply to qemu.git/master because it's based on your
v2 patch.
Please send a single v4 patch that combines v2 and v3 changes and can be
applied to qemu.git/master.
You can use "git rebase -i origin/master" to combine changes and put
them onto the latest origin/master. See the "fixup" and "squash"
commands in git-rebase(1)'s interactive mode for combining patches.
Thanks!
> Suggested-by: Stefan Hajnoczi <stefanha@redhat.com>
> Suggested-by: Eric Blake <eblake@redhat.com>
> Suggested-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Su Hang <suhang16@mails.ucas.ac.cn>
> ---
> scripts/checkpatch.pl | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 10c138344fa9..bed1dbbd54d1 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -2352,9 +2352,9 @@ sub process {
> }
> }
>
> -# check for missing bracing round if etc
> - if ($line =~ /(^.*)\b(for|while|if)\b/ &&
> - $line !~ /\#\s*(for|while|if)/) {
> +# check for missing bracing around if etc
> + if ($line =~ /(^.*)\b(?:for|while|if)\b/ &&
> + $line !~ /\#\s*(?:for|while|if)/) {
> my ($level, $endln, @chunks) =
> ctx_statement_full($linenr, $realcnt, 1);
> if ($dbg_adv_apw) {
> --
> 2.7.4
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
next prev parent reply other threads:[~2018-03-02 11:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-28 3:31 [Qemu-devel] [PATCH v3] scripts/checkpatch.pl: add check for `while` and `for` Su Hang
2018-02-28 8:00 ` Darren Kenny
2018-03-02 11:29 ` Stefan Hajnoczi [this message]
2018-03-06 4:33 ` Su Hang
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=20180302112911.GE6026@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=eblake@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=suhang16@mails.ucas.ac.cn \
--cc=thuth@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).