From patchwork Fri Sep 9 11:11:41 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 15752 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id EF2FA6CC7; Fri, 9 Sep 2016 13:11:48 +0200 (CEST) Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id 1F3E52B9C for ; Fri, 9 Sep 2016 13:11:48 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id w12so25424798wmf.0 for ; Fri, 09 Sep 2016 04:11:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id; bh=utsG4z7nSHYo8rYOEgb/x+tqaN+0E40Kk8VlCHGMPbU=; b=C5YXeMGA7jWOLxRqJ2YvInXkPZEWIl9z2SEgknMaeYMhtXKN9XnrbpDXGEYF+rubJr bzKzDKJApIqZYWkjD/SzZe4/RQtulEBsY31iAlx2NlY3sQj5fliqU7beDlQP4vBPvx1s 878aUMxWcNCI04hGla03O/kKhI9Bpm0zcutMU5dgZDyBVMGNEcN3+GOQ+IZQQyRYKpIY QU+maqR60ImBu9ndfat3Lf63Ewp9EW7VWXNKQtqQZN61Jp6FiZ0NaF49hOoqRfeDWC6B Ed3yrIEQcuiT8i1CKKCdWHtvS3g46Kq9KTfqfp7/Q0SPiYZOrcdZYiMXqziYcC0RSNo+ iU6g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=utsG4z7nSHYo8rYOEgb/x+tqaN+0E40Kk8VlCHGMPbU=; b=iJAC4Db0lNoXq4JdO16dGngnzQ0JoUxV2V0SsmVcioGYzoXvPqDMV0hhIZd2ST20vk F6khsSK/yTRnRNwTykevbtbyV6fj+oFfK/rEsmrEG4oAp/8uyXEPTWQWcBiW46jfBuxK rT8zmyjGV+HSG5OV9KjWC+3L7fQ9TDxDBcWsoLQ2XNUD33tEstig0RajRtwNUi11VQjb RejWPfNsMeiMcDa5UJM3eiwDO+zrSChSEYg4jjrJVZjKvJmanuJoGZ5Ql1X/XMrZqRC4 iuXhz3kPXaRdtPO3bs1SIUweUHF84AN4grR5SWxsqm/dKwHCP6/jAAb54IjDtbQNQyfs IrLQ== X-Gm-Message-State: AE9vXwNiI0apbajhHMVfYGmh7Yrx4/OJIyZ1nHRZVsyZq8Z0tN+CPhPvHA9bNnAnyYxfmYre X-Received: by 10.194.95.36 with SMTP id dh4mr2530040wjb.156.1473419507606; Fri, 09 Sep 2016 04:11:47 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id ya1sm2870171wjb.23.2016.09.09.04.11.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 09 Sep 2016 04:11:46 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 9 Sep 2016 13:11:41 +0200 Message-Id: <1473419501-15719-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] scripts: reverse order of checked commits X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The list of git commits to check was in the reversed order. Also add a comment in the help of checkpatches.sh about list input. Signed-off-by: Thomas Monjalon Tested-by: David Marchand --- scripts/check-git-log.sh | 10 +++++----- scripts/checkpatches.sh | 7 +++++-- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/scripts/check-git-log.sh b/scripts/check-git-log.sh index 6137098..1e05cf2 100755 --- a/scripts/check-git-log.sh +++ b/scripts/check-git-log.sh @@ -49,11 +49,11 @@ fi range=${1:-origin/master..} -commits=$(git log --format='%h' $range) -headlines=$(git log --format='%s' $range) -bodylines=$(git log --format='%b' $range) -fixes=$(git log --format='%h %s' $range | grep -i ': *fix' | cut -d' ' -f1) -tags=$(git log --format='%b' $range | grep -i -e 'by *:' -e 'fix.*:') +commits=$(git log --format='%h' --reverse $range) +headlines=$(git log --format='%s' --reverse $range) +bodylines=$(git log --format='%b' --reverse $range) +fixes=$(git log --format='%h %s' --reverse $range | grep -i ': *fix' | cut -d' ' -f1) +tags=$(git log --format='%b' --reverse $range | grep -i -e 'by *:' -e 'fix.*:') bytag='\(Reported\|Suggested\|Signed-off\|Acked\|Reviewed\|Tested\)-by:' # check headline format (spacing, no punctuation, no code) diff --git a/scripts/checkpatches.sh b/scripts/checkpatches.sh index 4addde4..622a5b6 100755 --- a/scripts/checkpatches.sh +++ b/scripts/checkpatches.sh @@ -52,6 +52,9 @@ print_usage () { Run Linux kernel checkpatch.pl with DPDK options. The environment variable DPDK_CHECKPATCH_PATH must be set. + + The patches to check can be from files specified on the command line, + or latest git commits limited with -n option (default limit: origin/master). END_OF_HELP } @@ -96,9 +99,9 @@ check () { # if [ -z "$1" ] ; then if [ $number -eq 0 ] ; then - commits=$(git rev-list origin/master..) + commits=$(git rev-list --reverse origin/master..) else - commits=$(git rev-list --max-count=$number HEAD) + commits=$(git rev-list --reverse --max-count=$number HEAD) fi for commit in $commits ; do subject=$(git log --format='%s' -1 $commit)