From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zhiyong Yang Subject: [PATCH 0/6] fix port id type Date: Thu, 12 Oct 2017 17:32:46 +0800 Message-ID: <20171012093252.53100-1-zhiyong.yang@intel.com> Cc: ferruh.yigit@intel.com To: dev@dpdk.org Return-path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 1049423A for ; Thu, 12 Oct 2017 11:32:57 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Now ethdev port_id has been increased to uint16_t from uint8_t in the below patch http://www.dpdk.org/dev/patchwork/patch/29418/ but 1. Some features which are applied were still developed based on older version uint8_t port_id. 2. Some places using port id such as testpmd are omitted in previous patch. The patchset fixes some port id type issues. Zhiyong Yang (6): lib/librte_ether: fix port id type net/bnxt: fix port id type net/liquidio: fix port id type app/pdump: fix port id type app/proc_info: fix port id type app/testpmd: fix port id type app/pdump/main.c | 4 +- app/proc_info/main.c | 14 +- app/test-pmd/cmdline.c | 427 +++++++++++++++++++------------------- app/test-pmd/config.c | 14 +- app/test-pmd/testpmd.c | 13 +- app/test-pmd/testpmd.h | 16 +- drivers/net/bnxt/bnxt_hwrm.c | 2 +- drivers/net/liquidio/lio_struct.h | 2 +- lib/librte_ether/ethdev_profile.c | 6 +- lib/librte_ether/ethdev_profile.h | 2 +- lib/librte_ether/rte_ethdev.c | 2 +- lib/librte_ether/rte_ethdev.h | 2 +- 12 files changed, 253 insertions(+), 251 deletions(-) -- 2.13.3