All of lore.kernel.org
 help / color / mirror / Atom feed
* Bogus error in checkpatch.pl
@ 2014-09-03  4:03 Pranith Kumar
  2014-09-03  4:25 ` Joe Perches
  0 siblings, 1 reply; 5+ messages in thread
From: Pranith Kumar @ 2014-09-03  4:03 UTC (permalink / raw)
  To: Joe Perches, Andrew Morton, LKML

I receive an ERROR when running checkpatch.pl on a patch containing
the following line:

Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re

saying that the commit ID should be 12 or more characters when the
commit ID is indeed 12 characters. I tried fixing it, but my perl is
not up-to-par.

Please fix! Thanks.

-- 
Pranith

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bogus error in checkpatch.pl
  2014-09-03  4:03 Bogus error in checkpatch.pl Pranith Kumar
@ 2014-09-03  4:25 ` Joe Perches
  2014-09-03  4:29   ` Pranith Kumar
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2014-09-03  4:25 UTC (permalink / raw)
  To: Pranith Kumar; +Cc: Andrew Morton, LKML

On Wed, 2014-09-03 at 00:03 -0400, Pranith Kumar wrote:
> I receive an ERROR when running checkpatch.pl on a patch containing
> the following line:
> 
> Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re
> 
> saying that the commit ID should be 12 or more characters when the
> commit ID is indeed 12 characters. I tried fixing it, but my perl is
> not up-to-par.

You need to use parentheses around the description like:
	commit <commitid> ("commit description")

For your case:

Commit 615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important
typo re memory barriers")





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bogus error in checkpatch.pl
  2014-09-03  4:25 ` Joe Perches
@ 2014-09-03  4:29   ` Pranith Kumar
  2014-09-03  5:34     ` Joe Perches
  0 siblings, 1 reply; 5+ messages in thread
From: Pranith Kumar @ 2014-09-03  4:29 UTC (permalink / raw)
  To: Joe Perches; +Cc: Andrew Morton, LKML

Hi Joe,

On Wed, Sep 3, 2014 at 12:25 AM, Joe Perches <joe@perches.com> wrote:
>
> You need to use parentheses around the description like:
>         commit <commitid> ("commit description")
>
> For your case:
>
> Commit 615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important
> typo re memory barriers")
>

Ah, OK. But the error message does not say anything about missing
paranetheses and only stresses on chars in the id:

$ ./scripts/checkpatch.pl
patch_dir/0001-doc-memory-barriers.txt-Correct-example-for-reorderi.patch
ERROR: Please use 12 or more chars for the git commit ID like: 'Commit
615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important typo
re memory barriers")'
#8:
Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re


Is it possible to make it a bit clearer, perhaps?

Thanks!
-- 
Pranith

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bogus error in checkpatch.pl
  2014-09-03  4:29   ` Pranith Kumar
@ 2014-09-03  5:34     ` Joe Perches
  2014-09-03 15:09       ` Pranith Kumar
  0 siblings, 1 reply; 5+ messages in thread
From: Joe Perches @ 2014-09-03  5:34 UTC (permalink / raw)
  To: Pranith Kumar; +Cc: Andrew Morton, LKML

On Wed, 2014-09-03 at 00:29 -0400, Pranith Kumar wrote:
> Hi Joe,

Hello Pranith.

> On Wed, Sep 3, 2014 at 12:25 AM, Joe Perches <joe@perches.com> wrote:
> > You need to use parentheses around the description like:
> >         commit <commitid> ("commit description")
> > For your case:
> > Commit 615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important
> > typo re memory barriers")
> Ah, OK. But the error message does not say anything about missing
> paranetheses and only stresses on chars in the id:
> 
> $ ./scripts/checkpatch.pl
> patch_dir/0001-doc-memory-barriers.txt-Correct-example-for-reorderi.patch
> ERROR: Please use 12 or more chars for the git commit ID like: 'Commit
> 615cc2c9cf95 ("Documentation/memory-barriers.txt: fix important typo
> re memory barriers")'
> #8:
> Commit 615cc2c9cf95 "Documentation/memory-barriers.txt: fix important typo re
> Is it possible to make it a bit clearer, perhaps?

Maybe.  Suggest a modified message.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Bogus error in checkpatch.pl
  2014-09-03  5:34     ` Joe Perches
@ 2014-09-03 15:09       ` Pranith Kumar
  0 siblings, 0 replies; 5+ messages in thread
From: Pranith Kumar @ 2014-09-03 15:09 UTC (permalink / raw)
  To: Joe Perches; +Cc: Andrew Morton, LKML


On 09/03/2014 01:34 AM, Joe Perches wrote:
> Maybe.  Suggest a modified message.
>

How about the following?

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index b602ed2..bcc384e 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2143,7 +2143,7 @@ sub process {
                        my $desc = 'commit description';
                        ($id, $desc) = git_commit_info($orig_commit, $id, $desc);
                        ERROR("GIT_COMMIT_ID",
-                             "Please use 12 or more chars for the git commit ID like: '${init_char}ommit $id (\"$desc\")'\n" . $herecurr);
+                             "Please use 12 or more chars for the git commit ID and parentheses for the commit message like: '${init_char}ommit $id (\"$desc\")'\n" . $herecurr);
                }
 
 # Check for added, moved or deleted files


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-03 15:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-03  4:03 Bogus error in checkpatch.pl Pranith Kumar
2014-09-03  4:25 ` Joe Perches
2014-09-03  4:29   ` Pranith Kumar
2014-09-03  5:34     ` Joe Perches
2014-09-03 15:09       ` Pranith Kumar

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.