From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] devtools: speed up maintainers check Date: Sat, 15 Jul 2017 11:49:48 +0200 Message-ID: <20170715094948.9826-1-thomas@monjalon.net> To: dev@dpdk.org Return-path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 4086023D for ; Sat, 15 Jul 2017 11:49:57 +0200 (CEST) Received: from xps.monjalon.net (apoitiers-656-1-613-51.w109-214.abo.wanadoo.fr [109.214.42.51]) by mail.messagingengine.com (Postfix) with ESMTPA id B7DCD7E622 for ; Sat, 15 Jul 2017 05:49:55 -0400 (EDT) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" There is a huge speed improvement when forcing Unicode to be disabled in this script. In my test, it is improved from 13s to 6s. Signed-off-by: Thomas Monjalon --- devtools/check-maintainers.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/devtools/check-maintainers.sh b/devtools/check-maintainers.sh index 69c879a82..ac5326b8b 100755 --- a/devtools/check-maintainers.sh +++ b/devtools/check-maintainers.sh @@ -34,6 +34,9 @@ cd $(dirname $0)/.. +# speed up by ignoring Unicode details +export LC_ALL=C + # Get files matching paths with wildcards and / meaning recursing files () # [ ...] { -- 2.13.2