From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id DFD141094 for ; Thu, 23 Mar 2017 11:03:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490263439; x=1521799439; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=Nc4IrqPYG5UEZNEty+7Ybm7p3HBtMGtUD+BypWeQdeI=; b=FqG017lu/yH1XseIm3OZ8L+S0jGq2xCEbJpyuewhuVlNx3HQs3DEvG4D i0Lt+pYehDZmMyKhwDxbIvvg1qqEyg==; Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Mar 2017 03:03:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,209,1486454400"; d="scan'208";a="1126137452" Received: from unknown (HELO dpdk9.sh.intel.com) ([10.239.129.31]) by fmsmga001.fm.intel.com with ESMTP; 23 Mar 2017 03:03:56 -0700 From: Beilei Xing To: jingjing.wu@intel.com Cc: helin.zhang@intel.com, dev@dpdk.org Date: Thu, 23 Mar 2017 18:02:27 +0800 Message-Id: <1490263352-61174-1-git-send-email-beilei.xing@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1488526784-16621-1-git-send-email-beilei.xing@intel.com> References: <1488526784-16621-1-git-send-email-beilei.xing@intel.com> Subject: [dpdk-dev] [PATCH v3 0/5] pipeline personalization profile 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, 23 Mar 2017 10:03:59 -0000 Due to limited resources of X*710 (parser and analyzer configuration tables, number of packet classification types, number of packet types, filters configuration tables, etc.), it's impossible to simultaneously support all 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. List of possible use cases for extended X*710 configuration using profiles 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 packets 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 Beilei Xing (5): net/i40e: add pipeline personalization profile processing app/testpmd: add command for loading a profile net/i40e: add get all loaded profiles app/testpmd: add command for getting loaded profiles doc: add pipeline personalization profile support for i40e app/test-pmd/cmdline.c | 163 +++++++++++++++++++++ app/test-pmd/config.c | 67 +++++++++ app/test-pmd/testpmd.h | 25 ++++ doc/guides/rel_notes/release_17_05.rst | 4 + drivers/net/i40e/i40e_ethdev.c | 228 ++++++++++++++++++++++++++++++ drivers/net/i40e/i40e_ethdev.h | 5 + drivers/net/i40e/rte_pmd_i40e.h | 32 +++++ drivers/net/i40e/rte_pmd_i40e_version.map | 7 + 8 files changed, 531 insertions(+) -- 2.5.5