Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752037AbdFGS4v (ORCPT ); Wed, 7 Jun 2017 14:56:51 -0400 Received: from smtprelay0215.hostedemail.com ([216.40.44.215]:45149 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751845AbdFGS4t (ORCPT ); Wed, 7 Jun 2017 14:56:49 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 50,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::,RULES_HIT:41:355:379:541:599:800:960:967:973:982:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:2393:2525:2560:2563:2682:2685:2828:2859:2933:2937:2939:2942:2945:2947:2951:2954:3022:3138:3139:3140:3141:3142:3353:3622:3653:3865:3866:3867:3868:3870:3934:3936:3938:3941:3944:3947:3950:3953:3956:3959:4321:4605:5007:7903:9025:10004:10400:10848:11026:11232:11473:11658:11914:12043:12050:12555:12740:12760:12895:13069:13311:13357:13439:14181:14659:14721:21080:21451:21627:30034:30054:30080:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:4,LUA_SUMMARY:none X-HE-Tag: side67_758b45a407529 X-Filterd-Recvd-Size: 2701 Message-ID: <1496861806.1929.4.camel@perches.com> Subject: Re: [PATCH 1/1 v2] checkpatch: remove false warning for commit reference From: Joe Perches To: Heinrich Schuchardt , Andy Whitcroft , Andrew Morton Cc: linux-kernel@vger.kernel.org Date: Wed, 07 Jun 2017 11:56:46 -0700 In-Reply-To: <20170607184008.5869-1-xypron.glpk@gmx.de> References: <1477255021.3561.9.camel@perches.com> <20170607184008.5869-1-xypron.glpk@gmx.de> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.6-1ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1802 Lines: 48 On Wed, 2017-06-07 at 20:40 +0200, Heinrich Schuchardt wrote: > Checkpatch warns of an incorrect commit reference style > for any hexadecimal number of 12 digits and more. > > Numbers of 12 digits are not necessarily commit ids. > > For an example provoking the problem see > https://patchwork.kernel.org/patch/9170897/ > > Checkpatch should only warn if the number refers to an > existing commit. > > Cc: Joe Perches > Signed-off-by: Heinrich Schuchardt > --- > v2: > changed formatting according to suggestions by Joe Perches Wow, the original patch was 8+ months ago. Anyway: Acked-by: Joe Perches > --- > scripts/checkpatch.pl | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl > index 4b9569fa931b..3895978c5bbd 100755 > --- a/scripts/checkpatch.pl > +++ b/scripts/checkpatch.pl > @@ -866,6 +866,7 @@ sub git_commit_info { > # echo "commit $(cut -c 1-12,41-)" > # done > } elsif ($lines[0] =~ /^fatal: ambiguous argument '$commit': unknown revision or path not in the working tree\./) { > + $id = undef; > } else { > $id = substr($lines[0], 0, 12); > $desc = substr($lines[0], 41); > @@ -2605,7 +2606,8 @@ sub process { > ($id, $description) = git_commit_info($orig_commit, > $id, $orig_desc); > > - if ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens) { > + if (defined($id) && > + ($short || $long || $space || $case || ($orig_desc ne $description) || !$hasparens)) { > ERROR("GIT_COMMIT_ID", > "Please use git commit description style 'commit <12+ chars of sha1> (\"\")' - ie: '${init_char}ommit $id (\"$description\")'\n" . $herecurr); > }