From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 36AC92C1A for ; Thu, 30 Mar 2017 08:18:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490854713; x=1522390713; h=from:to:cc:subject:date:message-id:references: in-reply-to:content-transfer-encoding:mime-version; bh=2aPqUNhXC/ZpZAobKFml2p/rIwd3W7OaP6/oQx4xFL4=; b=M7OplKRppy+4rjPfQVVg22Q+I0U2FtWNKjzVP0v2mZUuVLniFtDy+Vmf I3pScRdT231+UmKyfESMxFOoqePALQ==; Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Mar 2017 23:18:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,245,1486454400"; d="scan'208";a="839929092" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by FMSMGA003.fm.intel.com with ESMTP; 29 Mar 2017 23:18:31 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 29 Mar 2017 23:18:31 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.253]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.82]) with mapi id 14.03.0248.002; Thu, 30 Mar 2017 14:18:28 +0800 From: "Wu, Jingjing" To: "Xing, Beilei" CC: "Zhang, Helin" , "dev@dpdk.org" Thread-Topic: [PATCH v8 0/6] dynamic device personalization support Thread-Index: AQHSqQDElRHIGGl7GUyuJCkH2a0BtqGs6Lqg Date: Thu, 30 Mar 2017 06:18:28 +0000 Message-ID: <9BB6961774997848B5B42BEC655768F810D1B15E@SHSMSX103.ccr.corp.intel.com> References: <1490798651-116457-1-git-send-email-beilei.xing@intel.com> <1490842311-96705-1-git-send-email-beilei.xing@intel.com> In-Reply-To: <1490842311-96705-1-git-send-email-beilei.xing@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 v8 0/6] dynamic device personalization support 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, 30 Mar 2017 06:18:33 -0000 > -----Original Message----- > From: Xing, Beilei > Sent: Thursday, March 30, 2017 10:52 AM > To: Wu, Jingjing > Cc: Zhang, Helin ; dev@dpdk.org > Subject: [PATCH v8 0/6] dynamic device personalization support >=20 > Due to limited resources of X*710 (parser and analyzer configuration tabl= es, > number of packet classification types, number of packet types, filters > configuration tables, etc.), it's impossible to simultaneously support al= l > protocols/filters required for different parts on network. > To enable protocols/filters extensions for X*710, new Admin Command for > loading user defined configurations is added. > PPP is a format of extend configuration for X*710, it allows user to load= user > defined configuration to X*710. >=20 > List of possible use cases for extended X*710 configuration using profile= s could > include following: > Configuring Analyzer/Parser to support new protocols, e.g. > - IP L2TPv3 tunneling protocol > - IPSec ESP/AH protocols > - MPLSoGRE, MPLSoUDP tunnels > - GTP-C/GTP-U tunnels > New PCTYPEs for offloading packet classification to X*710. e.g. > - new IP Protocol in addition to TCP/UDP/SCTP > - new TCP/UDP subtypes, like TCP SYN, TCP FIN > - new PCTYPE for tunneled packets like GTP-C, GTP-U New PTYPEs for packet= s > identification, e.g. > - MAC, MPLS, IP4, UDP > - MAC, MPLS, MPLS, IP6, TCP > Fixes for NVM configuration, e.g. > - list of enabled stat counters to improve throughput > - parser/analyzer configuration for some corner cases >=20 > v8 changes: > Change dynamic device profile to dynamic device personalization. >=20 > v7 changes: > Fix one coding style problem. > Add condition during ddp processing. >=20 > v6 changes: > Change pipeline personalization profile to dynamic device profile. >=20 > v5 changes: > Change parameter of rte_pmd_i40e_process_ppp_package to extend > operation. > Change structure rte_pmd_i40e_profile_info. >=20 > v4 changes: > Fix compile error with gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3)= . > Move ppp related structures to rte_pmd_i40e.h. > Not support remove PPP temporarily. >=20 > v3 changes: > Move ppp AQ command code to base code. Series Acked-by Jingjing Wu