From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 50CF32BF4 for ; Thu, 3 Jan 2019 09:14:52 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 3 Jan 2019 10:14:49 +0200 Received: from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx [10.101.0.96]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x038EJfj008603; Thu, 3 Jan 2019 10:14:48 +0200 From: Yongseok Koh To: Andy Green Cc: Ferruh Yigit , dpdk stable Date: Thu, 3 Jan 2019 00:13:39 -0800 Message-Id: <20190103081400.14191-16-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190103081400.14191-1-yskoh@mellanox.com> References: <20190103081400.14191-1-yskoh@mellanox.com> Subject: [dpdk-stable] patch 'devtools: provide more generic grep in git check' has been queued to LTS release 17.11.5 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jan 2019 08:14:52 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.5 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/04/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Yongseok --- >>From fb45c734af4a615a8849802fbb8e62d1748f5df1 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Mon, 14 May 2018 12:59:56 +0800 Subject: [PATCH] devtools: provide more generic grep in git check [ upstream commit 5831a2198ade05242535822e480e83692652e02d ] On Fedora 28, every patch is faulted for "Wrong headline uppercase", because [A-Z] is not always case sensitive. Change to use [[:upper:]] Signed-off-by: Andy Green Tested-by: Ferruh Yigit --- devtools/check-git-log.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh index 910daba42..9014c8241 100755 --- a/devtools/check-git-log.sh +++ b/devtools/check-git-log.sh @@ -106,8 +106,8 @@ bad=$(echo "$headlines" | grep --color=always \ # check headline lowercase for first words bad=$(echo "$headlines" | grep --color=always \ - -e '^.*[A-Z].*:' \ - -e ': *[A-Z]' \ + -e '^.*[[:upper:]].*:' \ + -e ': *[[:upper:]]' \ | sed 's,^,\t,') [ -z "$bad" ] || printf "Wrong headline uppercase:\n$bad\n" -- 2.11.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-01-02 23:59:12.949533738 -0800 +++ 0016-devtools-provide-more-generic-grep-in-git-check.patch 2019-01-02 23:59:12.057815000 -0800 @@ -1,8 +1,10 @@ -From 5831a2198ade05242535822e480e83692652e02d Mon Sep 17 00:00:00 2001 +From fb45c734af4a615a8849802fbb8e62d1748f5df1 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Mon, 14 May 2018 12:59:56 +0800 Subject: [PATCH] devtools: provide more generic grep in git check +[ upstream commit 5831a2198ade05242535822e480e83692652e02d ] + On Fedora 28, every patch is faulted for "Wrong headline uppercase", because [A-Z] is not always case sensitive. @@ -16,7 +18,7 @@ 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devtools/check-git-log.sh b/devtools/check-git-log.sh -index c601f6ae9..2542d9ee0 100755 +index 910daba42..9014c8241 100755 --- a/devtools/check-git-log.sh +++ b/devtools/check-git-log.sh @@ -106,8 +106,8 @@ bad=$(echo "$headlines" | grep --color=always \