From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5238CA0353; Tue, 19 Nov 2019 19:16:10 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9A1DFA69; Tue, 19 Nov 2019 19:16:09 +0100 (CET) Received: from wout2-smtp.messagingengine.com (wout2-smtp.messagingengine.com [64.147.123.25]) by dpdk.org (Postfix) with ESMTP id E996F237 for ; Tue, 19 Nov 2019 19:16:08 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 67C27563; Tue, 19 Nov 2019 13:16:07 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 19 Nov 2019 13:16:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=ZO3jri5Lyzsjv7zACax0nKDt0AaSzdEGHrQ2InxPsrw=; b=cJN5Pbt5Fllu /IwGD8TGdMhrKrZnwYc8lh/z1/oZX3El7rlbw568uVEYwmVACcXrGeG6ymUTca7Y CQRoP7WIkJQez7lF4L4//fm6hIAm7R68RvolpYHTyfOtEnDBJwddR23TjKSyXSGx 79a4XQBjwNLkn5FZ13EVz6XEj6Fk6Ws= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=ZO3jri5Lyzsjv7zACax0nKDt0AaSzdEGHrQ2InxPs rw=; b=WwHBW3yom+FfsATTsX/21RsK1V6JgTCFsshFUY27sj1MM78lvYW0vYoyO DOGCNus7STcNzZz8lZDYZvc5hnlhWRYLBF84t5YqijdN3+ClZqWmci84BgWzZzrR Z9Or4TPoZ7kyMFqIxi8dxe4o+ORqmII/9Kic2ZWV6EGS1O+pxmkFUm5p0Ywk523b 9f3ZDi9oGABuS9ABCTh8hyqwXRzOBzpxUFFdVVvTyn8i1VWdtYIUXuqrgZuR4lUo 6f4yFGhgZkcua65vU+753kWjN1t3kxgNWMuWxtT7Z7nmAP/7o36EMn8kyghazOlZ julg34p7Um7O4KdSe8s+Ybr4Sdjww== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrudegkedgudduudcutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd enucfjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhm rghsucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenuc fkphepjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpeht hhhomhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 3881980062; Tue, 19 Nov 2019 13:16:05 -0500 (EST) From: Thomas Monjalon To: Anatoly Burakov , ray.kinsella@intel.com Cc: dev@dpdk.org, Marcin Baran , john.mcnamara@intel.com, bruce.richardson@intel.com, david.marchand@redhat.com, Pawel Modrak Date: Tue, 19 Nov 2019 19:16:04 +0100 Message-ID: <1852884.APpgJObYHn@xps> In-Reply-To: <44a34951076b32f75022ebf856a2b10c2cdbc504.1573230233.git.anatoly.burakov@intel.com> References: <44a34951076b32f75022ebf856a2b10c2cdbc504.1573230233.git.anatoly.burakov@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v7 10/10] buildtools: add ABI versioning check script 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 08/11/2019 17:25, Anatoly Burakov: > From: Marcin Baran > + echo "correct version (ABI_VER/ABI_VER+1/EXPERIMENTAL)" I don't get why a symbol could be versioned for the next ABI? Assuming we upgrade the ABI version at the beginning of the cycle, every symbols should have the same version, right? > +for SYM in `echo "${OBJ_DUMP_OUTPUT}" | awk '{print $(NF-1) "-" $NF}'` Please, I really prefer we use the modern $() instead of backquotes.