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 902E911F5 for ; Tue, 29 May 2018 17:56:17 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1098921B0C; Tue, 29 May 2018 11:56:17 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 29 May 2018 11:56:17 -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; s=mesmtp; bh=sgBqkpq290BgJMfqs9Sfr32jKi fKd1RHc0x7c8mmNGw=; b=J8CWtSLdQnvh8JddEAsV+qUv2C+tcFVnclH4DiuNOX Zgn7BesO4OSWZ8QuIsjGWQOVtpBP8u/O2EafTrsEGt0MzN2jJqNRHUud3VlyQPiM OLZubbIjjaI0ZwieDOAEud3vueS0EJ8YaEXGFg3s+r5HFXwezZoNlJGH4h1T9/nW 4= 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; s=fm2; bh=sgBqkp q290BgJMfqs9Sfr32jKifKd1RHc0x7c8mmNGw=; b=GjH0OFuRiiCoV3aMVbE8F4 oG/zovR/2TiPAHJznGq1HnH9CIYBx5YgmLA1K97ea9R5OQT/GtD2WeHnqOBGrudO IgVZW+CZNsUWZvvSNqRvzIUp2CcLz3xYhIs0ALEzEPn21gOYXYjm+7UzoDH/neB5 AqIrrekvr5dYPsLTr+kPAJE9euMazOKcbkw3DzefHKvx0WuBet3IblhdK/dKNPYh OwwRCanYye+C1I2bbXhtzP2HlCR1ZkatLwKUBnJLU/SnqvxYD4VABmPj9gbo/9OG 4nYdMBw9Z6UVEASpdTYKo1whGMRv5zRpzY/dZkaQkTGSNItwVwRynDD0nosREJNA == X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 546AAE498C; Tue, 29 May 2018 11:56:16 -0400 (EDT) From: Thomas Monjalon To: Pavan Nikhilesh Cc: dev@dpdk.org, Ferruh Yigit Date: Tue, 29 May 2018 17:56:15 +0200 Message-ID: <6505816.6lJQvvYBPQ@xps> In-Reply-To: <20180527215447.2841-1-thomas@monjalon.net> References: <4156041.IfarTdeXU8@xps> <20180527215447.2841-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: check orphan symbols in map files 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: Tue, 29 May 2018 15:56:17 -0000 27/05/2018 23:54, Thomas Monjalon: > The script check-symbol-maps.sh finds the symbols exported > in a map file but not referenced in the codebase. > > Suggested-by: Pavan Nikhilesh > Signed-off-by: Thomas Monjalon > --- > v2: > - rewrite Python script from Pavan in a smaller shell script > - check symbol as whole word (-w) > - print one symbol per line > --- > MAINTAINERS | 1 + > devtools/check-symbol-maps.sh | 30 ++++++++++++++++++++++++++++++ Applied