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 1E49C7D04 for ; Fri, 6 Oct 2017 16:29:06 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5ECF820E46; Fri, 6 Oct 2017 10:29:06 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 06 Oct 2017 10:29:06 -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=lDBAbmWxbljGf+m Tuqmmb2PmlpNILI3n+kH99OyId6Y=; b=BPMoCDzbKww4nA6LUqfRhf7lVozpLiI km7RoxPRcsoVcbRNPmiAKCBL0wHz0/JvgKYykEIrKbgfP05loMZdrgoINX975bOE gjXzNwIui5Exh8Pi7OHHElqIMJw2hOKEvetu859XEbDE/B65SKTrQifMMjX7c+OA 6g++VNMdJEbE= 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=lDBAbmWxbljGf+mTuqmmb2PmlpNILI3n+kH99OyId6Y=; b=ZVPO6Hpy cEVe1AWAh5joNi+LUeyxFmpZ8kaue3GyjTcyPioiUQ/8+YSaN4q2C4TJcbMkSpo6 farVouX7Y806klEIs0mocEiSHO8JbPaiskW/+HML3g/aML7IulgELyRIb3LzXuIQ 5Bh2GXzC0xup/abvnWDThVSyueQnu3v+7Id64PISVRds/FDtSykcILCMdq9i7dHh ZJ7ckZ2jAFea9hpa2Qs8PLAYrx4nA8o7FszKPqyMZ2ypVb2Yow6+K/He1C8l0tw7 HDODEzNFQy2X2+qSnPP5lT8a65Cl+Pp5ZGzPU+pgvg08mHK7aebM9GfIFgMbqsO7 PPeDDItT0fNShA== X-ME-Sender: X-Sasl-enc: DiLGTiiSRqiR+yMQaX7x/0Ug0buJPl3zTxYTiHShSTnT 1507300146 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 0B46924A9A; Fri, 6 Oct 2017 10:29:06 -0400 (EDT) From: Thomas Monjalon To: Ferruh Yigit , Zhiyong Yang Cc: dev@dpdk.org, Nelio Laranjeiro , Gaetan Rivet , Declan Doherty Date: Fri, 06 Oct 2017 16:29:04 +0200 Message-ID: <1530430.e3QHagxrph@xps> In-Reply-To: References: <20170925032231.72897-1-zhiyong.yang@intel.com> <20170929071727.21618-1-zhiyong.yang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v6 0/5] increase port_id range 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: Fri, 06 Oct 2017 14:29:07 -0000 06/10/2017 04:15, Ferruh Yigit: > On 9/29/2017 8:17 AM, Zhiyong Yang wrote: > > port_id is currently defined as uint8_t, which is limited to the range > > 0 to 255. A larger range is required for vdev scalability. > > > > It is necessary for a redefinition of port_id to extend it from > > 1 bytes to 2 bytes. All ethdev APIs and usages related to port_id will > > be changed at the same time. > > > > Discussion about port_id is the following thread. > > http://www.dpdk.org/dev/patchwork/patch/23208/ > > > > Changes in V2: > > 1. cover more PMDs to increase port_id range. > > 2. cover more examples to increase port_id range. > > 3. add 17.11 release note. > > > > Changes in V3: > > 1. cover mlx4 and mlx5. > > 2. add to increase port_id range in test code. > > 3. The patch "librte_mbuf: modify port initialization value" is merged > > into the patchset. > > > > Changes in V4: > > 1. Add a patch to remove bonding APIs using ABI versioning according to > > Ferruh's comments. > > 2. Unify to use typedef portid_t in testpmd code. > > 3. update release note deprecation doc in 2/5 > > 4. fix some issues according to comments. > > > > Changes in V5: > > 1. For 1/5, bond_mode_8023ad_conf_get_v1708() and bond_mode_8023ad_conf > > _get() are merged into one function bond_mode_8023ad_conf_get. > > > > Changes in V6: > > 1. For 2/5, remove the unnecessary LIBABIVER in Makefile and update > > the release notes "Shared Library Versions". > > Note: The patchset have dependency on the following patch. > > http://www.dpdk.org/dev/patchwork/patch/28738/ > > http://www.dpdk.org/dev/patchwork/patch/29219/ > > > > Note: 3/5 and 4/5 patches' building depends on 2/5 patch since 2/5 patch > > breaks lib/PMD API/ABI. > > > > Zhiyong Yang (5): > > net/bonding: remove bonding APIs using ABI versioning > > ethdev: increase port_id range > > examples: increase port_id range > > test: increase port_id range > > librte_mbuf: modify port initialization value > > Series applied to dpdk-next-net/master, thanks. The patches 2, 3, 4 must be squashed, otherwise compilation fails. Will squash in master branch.