From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga105.fm.intel.com with ESMTP; 12 Oct 2017 02:32:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,365,1503385200"; d="scan'208";a="137746898" Received: from unknown (HELO dpdk5.bj.intel.com) ([172.16.182.182]) by orsmga004.jf.intel.com with ESMTP; 12 Oct 2017 02:32:55 -0700 From: Zhiyong Yang To: dev@dpdk.org Cc: ferruh.yigit@intel.com Date: Thu, 12 Oct 2017 17:32:46 +0800 Message-Id: <20171012093252.53100-1-zhiyong.yang@intel.com> X-Mailer: git-send-email 2.13.3 Subject: [dpdk-dev] [PATCH 0/6] fix port id type 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: Thu, 12 Oct 2017 09:32:58 -0000 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