From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id B0A7B2C5E for ; Thu, 3 Aug 2017 12:06:34 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 2B7EA20872; Thu, 3 Aug 2017 06:06:34 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 03 Aug 2017 06:06:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=YFo/Uhq4PA4uRQk c3ALmQG2wW7jA5XFPO7dfB7RQpow=; b=S4xKyDGOc8xv+RPB75SFRQJf4Kjo8Cm C5ecgFkMaYBjWbafplniWpjr7M9NFcXKViKrBWPQq/D2Xy0+o2RegkpBxjvshFul dvoVuSW375LY29/9CpaW/GBNSiNmw9IRvwj6mPfe13CInYKxHbpCBGgB36I0PHO7 y2Hnk08E5Yec= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=YFo/Uhq4PA4uRQkc3ALmQG2wW7jA5XFPO7dfB7RQpow=; b=L92CZXrG yk5MkmF4nSNa+P2/F6cPUBaIonKQEAPiVWbdQB9CylB7ucA9PVIEW2u/HODdbNO4 Es64sM8E6kCf4X0C3PBhTyhIremDS6iell0Ati9NnSCr9pCKTP8UIhoNxZ+Le6fa d1xY0tSHjZqFXFGCUNqcV+Wds4MIGYBYDhaWaFO4WRiFjCe8dLr5TTjgYllLD459 T9JEfEtfzfboPwDpduUmdwukTHYVrYOvTAO80uIYlLIoZbicfSXgXVFeaTT2/PEY vIPGLf75NmInemhkNcgeu1JOHZxumkhkS7YAH91UWL37NB9oTinMA3V2KHgZ7obn mvY+bXGBOaH4+w== X-ME-Sender: X-Sasl-enc: hlwU1N4Ghv0lezqOEfolg7MFWEyj+FAFWB66ubGLumL8 1501754793 Received: from xps.localnet (196.114.118.80.rev.sfr.net [80.118.114.196]) by mail.messagingengine.com (Postfix) with ESMTPA id B689724038; Thu, 3 Aug 2017 06:06:33 -0400 (EDT) From: Thomas Monjalon To: stephen@networkplumber.org, keith.wiles@intel.com Cc: dev@dpdk.org Date: Thu, 03 Aug 2017 12:06:32 +0200 Message-ID: <3389675.km8h3kcPUK@xps> In-Reply-To: <20170715100033.19872-1-thomas@monjalon.net> References: <20170714170707.22464-1-thomas@monjalon.net> <20170715100033.19872-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] devtools: add script to find duplicated includes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2017 10:06:35 -0000 15/07/2017 12:00, Thomas Monjalon: > Based on Stephen's idea (originally implemented in a Perl script), > this is a shell script to find duplicated includes in a file. > It looks for all the .c and .h files of the git repository. > > It is fast enough because automatically well parallelized. > > Suggested-by: Stephen Hemminger > Signed-off-by: Thomas Monjalon > Tested-by: Keith Wiles > --- > v2: add optional parameter for directory as suggested by Keith > --- Applied