From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 0F8DCDE0 for ; Fri, 31 Mar 2017 02:43:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490921040; x=1522457040; h=from:to:cc:subject:date:message-id:references: in-reply-to:content-transfer-encoding:mime-version; bh=U+f3QYrTmDJnhapdtkka1G/TwR08LXMNW18NMmxMWd8=; b=SseAoe7X7tSK5gDnV/L/e5OCdhtUYrWbqHZYxO9xQiRT5I+RJ4BycHW7 cxoVVEEYm5kUpqN0JNH6Zc+8kvLGEw==; Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Mar 2017 17:43:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,249,1486454400"; d="scan'208";a="840230129" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by FMSMGA003.fm.intel.com with ESMTP; 30 Mar 2017 17:43:58 -0700 Received: from fmsmsx118.amr.corp.intel.com (10.18.116.18) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 30 Mar 2017 17:43:58 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx118.amr.corp.intel.com (10.18.116.18) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 30 Mar 2017 17:43:58 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.253]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.42]) with mapi id 14.03.0248.002; Fri, 31 Mar 2017 08:43:56 +0800 From: "Wu, Jingjing" To: "Zhang, Qi Z" , "Zhang, Helin" CC: "dev@dpdk.org" Thread-Topic: [PATCH v4 0/3] net/i40e: configurable PTYPE mapping Thread-Index: AQHSqUHmvdxLlcHOxki78ZuEjbV5l6GuHRrA Date: Fri, 31 Mar 2017 00:43:55 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F810D1C9EA@SHSMSX103.ccr.corp.intel.com> References: <20170330112959.12477-1-qi.z.zhang@intel.com> In-Reply-To: <20170330112959.12477-1-qi.z.zhang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/3] net/i40e: configurable PTYPE mapping 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, 31 Mar 2017 00:44:00 -0000 > -----Original Message----- > From: Zhang, Qi Z > Sent: Thursday, March 30, 2017 7:30 PM > To: Wu, Jingjing ; Zhang, Helin > > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH v4 0/3] net/i40e: configurable PTYPE mapping >=20 > The patch set create new APIs that help to change the mapping from hardwa= re > defined packet type to software defined packet type for i40e NICs. > Keep these APIs private is because currently they are only meaningful for > devices that support dynamic PTYPE configuration, which may not be a gene= ral > device feature. >=20 > v4: >=20 > - Add comment to explain the "user defined" ptype. >=20 > v3: >=20 > - Fix compile error when CONFIG_RTE_LIBRTE_I40E_PMD=3Dy in testpmd >=20 > v2: >=20 > - Add testpmd command line: > ptype mapping get > ptype mapping replace > ptype mapping reset > ptype mapping update >=20 > - Rename APIs to rte_pmd_i40e_ptype_mapping_xxx >=20 > - Add missing API declaration in rte_pmd_i40e_version.map >=20 > - Add missing ptype in check_invalid_pkt_type >=20 > - Fix couple typo error >=20 > Qi Zhang (3): > net/i40e: enable per dev PTYPE mapping table > net/i40e: configurable PTYPE mapping > app/testpmd: add CL for ptype mapping configure Acked-by: Jingjing Wu