Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752853AbdDKRm6 (ORCPT ); Tue, 11 Apr 2017 13:42:58 -0400 Received: from mail-pf0-f169.google.com ([209.85.192.169]:33448 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752232AbdDKRmz (ORCPT ); Tue, 11 Apr 2017 13:42:55 -0400 From: Wei Wang X-Google-Original-From: Wei Wang < wvw@google.com > To: apw@canonical.com, joe@perches.com Cc: linux-kernel@vger.kernel.org, Wei Wang Subject: [PATCH] checkpatch: special audit for revert commit line Date: Tue, 11 Apr 2017 10:41:40 -0700 Message-Id: <20170411174140.89291-1-wvw@google.com> X-Mailer: git-send-email 2.12.2.715.g7642488e1d-goog Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 940 Lines: 25 From: Wei Wang Currently checkpatch.pl does not recognize revert commits and complains about the commit hash format. Add special audit for revert commit to fix it. Signed-off-by: Wei Wang --- scripts/checkpatch.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index baa3c7be04ad..60c3b9e6a46b 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2539,6 +2539,7 @@ sub process { # Check for git id commit length and improperly formed commit descriptions if ($in_commit_log && !$commit_log_possible_stack_dump && $line !~ /^\s*(?:Link|Patchwork|http|https|BugLink):/i && + $line !~ /^This reverts commit [0-9a-f]{12,40}\./ && ($line =~ /\bcommit\s+[0-9a-f]{5,}\b/i || ($line =~ /(?:\s|^)[0-9a-f]{12,40}(?:[\s"'\(\[]|$)/i && $line !~ /[\<\[][0-9a-f]{12,40}[\>\]]/i && -- 2.12.2.715.g7642488e1d-goog