From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 52642A00C2; Tue, 8 Mar 2022 15:31:59 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E04F34068E; Tue, 8 Mar 2022 15:31:58 +0100 (CET) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by mails.dpdk.org (Postfix) with ESMTP id 0790B4068B for ; Tue, 8 Mar 2022 15:31:56 +0100 (CET) Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.west.internal (Postfix) with ESMTP id ED53B32020CA; Tue, 8 Mar 2022 09:31:55 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute5.internal (MEProxy); Tue, 08 Mar 2022 09:31:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:cc:content-transfer-encoding:content-type:date:date:from:from :in-reply-to:in-reply-to:message-id:mime-version:references :reply-to:sender:subject:subject:to:to; s=fm1; bh=m+hDmLtIP2/1CW f3OlfufeqGoxz//bVRM2slIT7hTjg=; b=UGKNuqNNXunUE8XBuUQ+lCOMax5B55 N/7PoQ4bwmoPZX91xvVt3hFp3IFT5S+Sb0Ii7jPSl20qsj36bd1D429v5n73DCqJ EnewDi3IaEOw+fyEtnGsrW5Lnyx/BHhxcVNShOn0YHStuYvEwMT4YsWDivFHEdXa lvN74Qy0xKVEuhuhObcYs0pQdC4wgg1E4r2gxXpzzlFStjrf76q/x63SMflzx/P0 JJxUJVbt4AwfayRcHPBi1jgGLtXmEbzctoB92ATeCB282I0h256Qoo9Rcn5tQtgJ i6MU76DYCgSkQ7gV13UKoQB9TYOD4Wz/eKQrmWwziQ0aDDbvPw8SmOXA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:date:date:from:from:in-reply-to:in-reply-to :message-id:mime-version:references:reply-to:sender:subject :subject:to:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm2; bh=m+hDmLtIP2/1CWf3OlfufeqGoxz//bVRM2slIT7hT jg=; b=jKYl0XYUpbkLMmChmez9FimiABSTU8GCP0ZJXRgZDBStYVuFsDD1Cqagn 2LN4lQQ2vmlnNu2Xl8gybO9cpf6gnuHaCL3u3x/zeS4cyf6mVZsOXYmLO7yhb3jQ HtVFAEKVuB1Nlz9gW/xtOLmK2CvBBfYnveF0WMjH0YA+F1arRl8huXR2IZW0vJ+p 22mRfygPBNWAdLRUUTdxPJhP68qjYV82FgVcSTHvR8oB+YQHvGaBuJVB9v6Xa0Xh TR8e6IxGl+YeM8hvpK5HKcn4vwjNTpRx7uV3wzNfbaxCAXIrWSTO87EK/3uJmyPP RLOU1kmjAyrLrzapmtJB+ot/nxiWQ== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvvddrudduiedgieegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpefhvffufffkjghfggfgtgesthfure dttddtvdenucfhrhhomhepvfhhohhmrghsucfoohhnjhgrlhhonhcuoehthhhomhgrshes mhhonhhjrghlohhnrdhnvghtqeenucggtffrrghtthgvrhhnpedugefgvdefudfftdefge elgffhueekgfffhfeujedtteeutdejueeiiedvffegheenucevlhhushhtvghrufhiiigv pedtnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrd hnvght X-ME-Proxy: Received: by mail.messagingengine.com (Postfix) with ESMTPA; Tue, 8 Mar 2022 09:31:54 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Cc: david.marchand@redhat.com Subject: Re: [PATCH v2 0/2] add missing local symbols catch-all Date: Tue, 08 Mar 2022 15:31:53 +0100 Message-ID: <5341376.G96rZvMJ2N@thomas> In-Reply-To: <20220308142412.2069408-1-thomas@monjalon.net> References: <20220306092023.2461466-1-thomas@monjalon.net> <20220308142412.2069408-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 08/03/2022 15:24, Thomas Monjalon: > The libraries (and driver) regexdev, gpudev and auxiliary bus > were missing "local:*" in their version.map linker script > which catch all non-listed functions to be hidden in shared libraries. > > v2: add a devtools check > > Thomas Monjalon (2): > regexdev: fix section attribute of symbols > build: hide local symbols in shared libraries Applied