From: Paolo Bonzini <pbonzini@redhat.com>
To: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: qemu-devel@nongnu.org, thuth@redhat.com, armbru@redhat.com,
famz@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1/5] checkpatch: tweak the files in which TABs are checked
Date: Wed, 10 Aug 2016 05:02:53 -0400 (EDT) [thread overview]
Message-ID: <317165270.783006.1470819773170.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20160810105730.6bba1a6f.cornelia.huck@de.ibm.com>
----- Original Message -----
> From: "Cornelia Huck" <cornelia.huck@de.ibm.com>
> To: "Paolo Bonzini" <pbonzini@redhat.com>
> Cc: qemu-devel@nongnu.org, thuth@redhat.com, armbru@redhat.com, famz@redhat.com
> Sent: Wednesday, August 10, 2016 10:57:30 AM
> Subject: Re: [PATCH 1/5] checkpatch: tweak the files in which TABs are checked
>
> On Wed, 10 Aug 2016 10:22:46 +0200
> Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> > Include Python and shell scripts, and make an exception for Perl
> > scripts we imported from Linux or elsewhere.
> >
> > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> > ---
> > scripts/checkpatch.pl | 9 +++++----
> > 1 file changed, 5 insertions(+), 4 deletions(-)
> >
> > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> > index 8d1813e..082c4ce 100755
> > --- a/scripts/checkpatch.pl
> > +++ b/scripts/checkpatch.pl
> > @@ -1334,7 +1334,7 @@ sub process {
> > }
> >
> > # check we are in a valid source file if not then ignore this hunk
> > - next if ($realfile !~ /\.(h|c|cpp|s|S|pl|sh)$/);
> > + next if ($realfile !~ /\.(h|c|cpp|s|S|pl|py|sh)$/);
>
> Do all of our checks work for python as well?
Only these:
ERROR("line over 90 characters\n" . $herecurr);
WARN("line over 80 characters\n" . $herecurr);
ERROR("unnecessary whitespace before a quoted newline\n" . $herecurr);
ERROR("adding a line without newline at end of file\n" . $herecurr);
ERROR("CVS style keyword markers, these will _not_ be updated\n". $herecurr);
ERROR("code indent should never use tabs\n" . $herevet);
After which there is a
# check we are in a valid C source file if not then ignore this hunk
next if ($realfile !~ /\.(h|c|cpp)$/);
> Looks reasonable. Do you plan to include the "skip header updates"
> patch as well?
Yes.
Paolo
next prev parent reply other threads:[~2016-08-10 9:03 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-10 8:22 [Qemu-devel] [PATCH v2 0/5] checkpatch tweaks Paolo Bonzini
2016-08-10 8:22 ` [Qemu-devel] [PATCH 1/5] checkpatch: tweak the files in which TABs are checked Paolo Bonzini
2016-08-10 8:57 ` Cornelia Huck
2016-08-10 9:02 ` Paolo Bonzini [this message]
2016-08-10 9:05 ` Cornelia Huck
2016-08-10 8:22 ` [Qemu-devel] [PATCH 2/5] checkpatch: check for CVS keywords on all sources Paolo Bonzini
2016-08-10 8:22 ` [Qemu-devel] [PATCH 3/5] CODING_STYLE, checkpatch: update line length rules Paolo Bonzini
2016-08-10 9:01 ` Cornelia Huck
2016-08-10 9:48 ` Thomas Huth
2016-08-10 8:22 ` [Qemu-devel] [PATCH 4/5] checkpatch: bump most warnings to errors Paolo Bonzini
2016-08-10 9:54 ` Thomas Huth
2016-08-10 10:25 ` Paolo Bonzini
2016-08-10 10:29 ` Thomas Huth
2016-08-10 10:44 ` Paolo Bonzini
2016-08-10 10:48 ` Thomas Huth
2016-08-10 8:22 ` [Qemu-devel] [PATCH 5/5] checkpatch: default to success if only warnings Paolo Bonzini
2016-08-10 9:03 ` [Qemu-devel] [PATCH v2 0/5] checkpatch tweaks Markus Armbruster
2016-08-10 23:56 ` no-reply
2016-08-10 23:55 ` Fam Zheng
2016-08-11 0:02 ` no-reply
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=317165270.783006.1470819773170.JavaMail.zimbra@redhat.com \
--to=pbonzini@redhat.com \
--cc=armbru@redhat.com \
--cc=cornelia.huck@de.ibm.com \
--cc=famz@redhat.com \
--cc=qemu-devel@nongnu.org \
--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 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.