From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id BF7491BB87 for ; Thu, 5 Apr 2018 00:31:27 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 25DD1227C8; Wed, 4 Apr 2018 18:31:27 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 04 Apr 2018 18:31:27 -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=6Lhy02tVn2Csceejfx9y99YMGu KcZO5q8QMuxqckOcc=; b=hfY+hF/9c/oTLlaFWQrz4lDkfrR4XQc/gLnWUHevFL jPJOzQDFwMfa7KjAa44QWqT8/ClH3xT7vlGpt9XekBmBHHO1jcuXNkGwmZu/urCX AKi2KZ3ewN+ALHwWYsgRcP+EfxZBZvu5UoPWWCSkxvD4PIfJs5QmW2vxCt2UiGXd M= 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=6Lhy02 tVn2Csceejfx9y99YMGuKcZO5q8QMuxqckOcc=; b=Zp1ZeAeEZoMg+VTtekxbbg msWZAGmQe379Qkouw2g7SX1AZcRwk4EjRgtLi5ZF0lhkINUWT1dl/+AujHtoyFwF t0boVBjo1UgiUcLmPCkF7tvQI0K0zMvXNapD6KIAwNGLpMQBV/TgrVCbeMcdR2BC TJSiAIucPCpSQNmkmQdpjeNYdLSBku8I1LvrGkSIo1kgKSbS0ISI+hOmLPJ8gls4 XY2MBNCFxgURVyu5DTX0KyGu6zdPbPGroiyJJxxBGdECa7dNLx4oh6qa8LdEg8Jx uFZl6lv7r0WWyZ+EaoxkCB/vx8TSQzGPj/2+AZxeAZVbV98VCWAzQNcg8FKRiLAw == 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 1B8B1E43C8; Wed, 4 Apr 2018 18:31:26 -0400 (EDT) From: Thomas Monjalon To: Anatoly Burakov Cc: dev@dpdk.org, Neil Horman , John McNamara , Marko Kovacevic , Bruce Richardson , chaozhu@linux.vnet.ibm.com, gowrishankar.m@linux.vnet.ibm.com Date: Thu, 05 Apr 2018 00:31:24 +0200 Message-ID: <2822773.anikK0mrl0@xps> In-Reply-To: References: <9ff09ae09b3e9e1b149f73a693b552f8c94a01a2.1521722141.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] eal: provide API for querying valid socket id's 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: Wed, 04 Apr 2018 22:31:28 -0000 31/03/2018 19:08, Anatoly Burakov: > During lcore scan, find all socket ID's and store them, and > provide public API to query valid socket id's. This will break > the ABI, so bump ABI version. > > Also, remove deprecation notice corresponding to this change. > > Signed-off-by: Anatoly Burakov > Acked-by: Gowrishankar Muthukrishnan > --- > > Notes: > v7: > - Renamed rte_num_socket_ids() to rte_socket_count() > - Removed deprecation notice associated with this change > - Addressed review comments You forgot the release notes for the ABI version (from my previous review). Applied and fixed.