From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 928581B332 for ; Mon, 5 Feb 2018 09:00:55 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Feb 2018 00:00:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,464,1511856000"; d="scan'208";a="24726037" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga003.jf.intel.com with ESMTP; 05 Feb 2018 00:00:54 -0800 Received: from FMSMSX109.amr.corp.intel.com (10.18.116.9) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 5 Feb 2018 00:00:53 -0800 Received: from bgsmsx151.gar.corp.intel.com (10.224.48.42) by fmsmsx109.amr.corp.intel.com (10.18.116.9) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 5 Feb 2018 00:00:53 -0800 Received: from bgsmsx101.gar.corp.intel.com ([169.254.1.25]) by BGSMSX151.gar.corp.intel.com ([169.254.3.9]) with mapi id 14.03.0319.002; Mon, 5 Feb 2018 13:30:51 +0530 From: "Yang, Zhiyong" To: "Wu, Yanglong" , "dev@dpdk.org" CC: "shahafs@mellanox.com" , "Lu, Wenzhuo" , "Wu, Yanglong" Thread-Topic: [dpdk-dev] [PATCH v3] app/testpmd: fix port_id alloction issue Thread-Index: AQHTnla2uP/xtFBvDkSv+TRd1VE+O6OVcYEw Date: Mon, 5 Feb 2018 08:00:50 +0000 Message-ID: References: <20180205023357.104418-1-yanglong.wu@intel.com> <20180205075306.104779-1-yanglong.wu@intel.com> In-Reply-To: <20180205075306.104779-1-yanglong.wu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.223.10.10] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3] app/testpmd: fix port_id alloction issue 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: Mon, 05 Feb 2018 08:00:55 -0000 It seems that the patch has been applied by Thomas. Please check mail list. > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yanglong Wu > Sent: Monday, February 5, 2018 3:53 PM > To: dev@dpdk.org > Cc: shahafs@mellanox.com; Lu, Wenzhuo ; Wu, > Yanglong > Subject: [dpdk-dev] [PATCH v3] app/testpmd: fix port_id alloction issue >=20 > In the feature of increasing port_id range from 8 bits to 16 bits, vlan p= ort_id > allocation function was forget to substitute UINT8 with UINT16, so the vl= an > port_id was allocated as a inccrete number. >=20 > Fixes:28caa76aea71 ("app/testpmd: fix port id type") >=20 > Signed-off-by: Yanglong Wu > Reviewed-by: Zhiyong Yang > ---