From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id B05DE5592 for ; Wed, 27 Sep 2017 20:45:01 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2017 11:45:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,446,1500966000"; d="scan'208";a="1224478515" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.252.10.197]) ([10.252.10.197]) by fmsmga002.fm.intel.com with ESMTP; 27 Sep 2017 11:44:49 -0700 To: "Yang, Zhiyong" , "dev@dpdk.org" Cc: "thomas@monjalon.net" , "adrien.mazarguil@6wind.com" References: <20170921083243.57991-1-zhiyong.yang@intel.com> <20170925032231.72897-1-zhiyong.yang@intel.com> <20170925032231.72897-3-zhiyong.yang@intel.com> <005b9d04-75b6-4673-57d2-d1b09e83ef6d@intel.com> From: Ferruh Yigit Message-ID: Date: Wed, 27 Sep 2017 19:44:42 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 2/5] ethdev: 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: Wed, 27 Sep 2017 18:45:02 -0000 On 9/26/2017 8:01 AM, Yang, Zhiyong wrote: > Hi Ferruh, Thomas, > >>> @@ -40,7 +40,7 @@ LIB = librte_pmd_af_packet.a >>> >>> EXPORT_MAP := rte_pmd_af_packet_version.map >>> >>> -LIBABIVER := 1 >>> +LIBABIVER := 2 >> >> I have just recognized this one. This shouldn't be updated. Only LIABIVER of the >> libraries that their API modified should be updated. >> >> The release notes "Shared Library Versions" updates and Makefile LIBABIVER >> updates should be compatible. I mean either both needs to be updated or both >> not updated. >> > > Ok. I will cleanup the unnecessary updates. > > Here are the list I will update . > > - librte_bitratestats.so.1 > + librte_bitratestats.so.2 > - librte_ethdev.so.7 > + librte_ethdev.so.8 > - librte_pdump.so.1 > + librte_pdump.so.2 > - librte_pmd_bond.so.1 > + librte_pmd_bnxt.so.2 > + librte_pmd_bond.so.2 > + librte_pmd_failsafe.so.2 > + librte_pmd_i40e.so.2 > + librte_pmd_ixgbe.so.2 > + librte_pmd_vhost.so.2 > > Among them, the following libs are added newly. > > + librte_pmd_bnxt.so.2 > + librte_pmd_failsafe.so.2 > + librte_pmd_i40e.so.2 > + librte_pmd_ixgbe.so.2 > + librte_pmd_vhost.so.2 There is a patch to add missing ones [1], I think it would be better to add them with a separate patch. But I missed the "librte_pmd_vhost" one, I will send a new version soon. Also failsafe don't have any PMD specific API, no need to add it. [1] http://dpdk.org/dev/patchwork/patch/28598/ > > One LIBABIVER need to be fixed. > Could you apply your patch http://www.dpdk.org/dev/patchwork/patch/28738/ in the main tree firstly? > > I hope the patchset can be merged into main tree. How do you think about it? > >> There is no way to split this patch more without breaking build right? > > Yes. it is too hard to split it. > > thanks > Zhiyong > >> It would be possible to do it if port_t used, but that has been decided not to... >> >> <...>