From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] scripts: reverse order of checked commits Date: Fri, 9 Sep 2016 13:11:41 +0200 Message-ID: <1473419501-15719-1-git-send-email-thomas.monjalon@6wind.com> To: dev@dpdk.org Return-path: 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) 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) 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 --- 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) -- 2.7.0