From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: Joe Perches <joe@perches.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Allan, Bruce W" <bruce.w.allan@intel.com>,
Anish Kumar <anish198519851985@gmail.com>,
Andy Whitcroft <apw@canonical.com>
Subject: Re: [PATCH] checkpatch: do not test/warn of leading whitespace before signature tags
Date: Thu, 18 Aug 2011 01:07:08 -0700 [thread overview]
Message-ID: <1313654829.2128.94.camel@jtkirshe-mobl> (raw)
In-Reply-To: <1313654341.32547.62.camel@Joe-Laptop>
[-- Attachment #1: Type: text/plain, Size: 3967 bytes --]
On Thu, 2011-08-18 at 00:59 -0700, Joe Perches wrote:
> On Thu, 2011-08-18 at 00:47 -0700, Jeff Kirsher wrote:
> > On Thu, 2011-08-18 at 00:26 -0700, Joe Perches wrote:
> > > On Wed, 2011-08-17 at 23:48 -0700, Jeff Kirsher wrote:
> > > > From: Bruce Allan <bruce.w.allan@intel.com>
> > > >
> > > > Commit 2011247 introduced additional style checks for signature tags in
> > > > patches which is good. Unfortunately, now whenever patches are checked
> > > > by piping the output of 'git show' or 'stg show' through checkpatch it
> > > > warns not to use whitespace before all signature tags since these (and the
> > > > rest of the patch description) are indented. Remove this test/warning.
> > >
> > > I think this is not a good idea.
> > >
> > > checkpatch is meant for patches not git log output.
> > > indenting signatures can cause other problems later.
> > >
> > > I think you can avoid this easily by using checkpatch
> > > option --ignore=BAD_SIGN_OFF when using git log output
> > > as input.
> >
> > The problem I have with this is that the sign-off's are not bad, they
> > are by default indented by 'git show' or 'stg show' so checkpatch.pl
> > should handle the "default" formatting of git/stg and if there is
> > additional indenting not expected, then the sign-off's should be
> > considered bad.
>
> I disagree.
>
> checkpatch should handle the default input of patches
> as best it can.
>
> I suppose checkpatch could have a different "--input=git"
> or some such to avoid certain things that git might produce
> that a patch would not.
That does sound an alternative which would be acceptable.
>
> Deleting useful checks for patches isn't a good idea.
>
> > If this option is added, then if there were "real"
> > problems with the sign-off, it would not be displayed.
>
> So what?
>
> It would also be too late to do anything about
> it anyway as it would already be committed.
If you are running it on patches already committed to maintainers tree,
but if you are running checkpatch.pl on a patch on your local tree
before you send it out, you can correct any changes necessary.
>
> > > You could also use:
> > > git log --format="commit %H%nAuthor: %an <%ae>%nDate: %aD%n%n%s%n%n%b"
> > > so that you get the current default --format=medium
> > > output without indenting the commit log body.
> > Even doing this does not resolve the "false" warnings" that
> > checkpatch.pl produces regarding the sign-off's.
>
> I tried it. It works for me.
> What about it doesn't work for you?
>
I did the following using David Miller's net-next tree...
git log -1 > ../test.patch
./scripts/checkpatch.pl ../test.patch
and I get the following:
WARNING: Do not use whitespace before Signed-off-by:
#9:
Signed-off-by: Robin Holt <holt@sgi.com>
WARNING: Do not use whitespace before Acked-by:
#10:
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>,
WARNING: Do not use whitespace before Acked-by:
#11:
Acked-by: Wolfgang Grandegger <wg@grandegger.com>,
WARNING: Do not use whitespace before Cc:
#12:
Cc: U Bhaskar-B22300 <B22300@freescale.com>
WARNING: Do not use whitespace before Cc:
#13:
Cc: socketcan-core@lists.berlios.de,
WARNING: Do not use whitespace before Cc:
#14:
Cc: netdev@vger.kernel.org,
WARNING: Do not use whitespace before Cc:
#15:
Cc: PPC list <linuxppc-dev@lists.ozlabs.org>
WARNING: Do not use whitespace before Cc:
#16:
Cc: Kumar Gala <galak@kernel.crashing.org>
WARNING: Do not use whitespace before Signed-off-by:
#17:
Signed-off-by: David S. Miller <davem@davemloft.net>
ERROR: Does not appear to be a unified-diff format patch
total: 1 errors, 9 warnings, 0 lines checked
../test.patch has style problems, please review.
If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 490 bytes --]
next prev parent reply other threads:[~2011-08-18 8:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-18 6:48 Jeff Kirsher
2011-08-18 7:26 ` Joe Perches
2011-08-18 7:47 ` Jeff Kirsher
2011-08-18 7:59 ` Joe Perches
2011-08-18 8:07 ` Jeff Kirsher [this message]
2011-08-18 8:16 ` Joe Perches
2011-08-18 8:26 ` Jeff Kirsher
2011-08-18 8:31 ` Joe Perches
2011-08-18 8:43 ` Jeff Kirsher
2011-08-18 8:56 ` Joe Perches
2011-08-18 9:21 ` Jeff Kirsher
2011-08-18 8:16 ` Jeff Kirsher
2011-08-19 14:13 ` Michal Marek
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=1313654829.2128.94.camel@jtkirshe-mobl \
--to=jeffrey.t.kirsher@intel.com \
--cc=anish198519851985@gmail.com \
--cc=apw@canonical.com \
--cc=bruce.w.allan@intel.com \
--cc=joe@perches.com \
--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
all inboxes | Powered by JetHome®