From patchwork Wed Jun 14 08:47:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhao1, Wei" X-Patchwork-Id: 25308 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id F37F57CD1; Wed, 14 Jun 2017 10:57:34 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 7187A7CC3 for ; Wed, 14 Jun 2017 10:57:33 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Jun 2017 01:57:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,340,1493708400"; d="scan'208";a="113017282" Received: from dpdk1.bj.intel.com ([172.16.182.84]) by orsmga005.jf.intel.com with ESMTP; 14 Jun 2017 01:57:30 -0700 From: Wei Zhao To: dev@dpdk.org Cc: ferruh.yigit@intel.com, Wei Zhao Date: Wed, 14 Jun 2017 16:47:56 +0800 Message-Id: <1497430076-33359-1-git-send-email-wei.zhao1@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dpdk-dev] [PATCH] doc: add igb generic api features update 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add release notes update to announce support of rte_flow on igb nic, and nic features update of this feature. Signed-off-by: Wei Zhao --- doc/guides/nics/features/igb.ini | 1 + doc/guides/rel_notes/release_17_08.rst | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/doc/guides/nics/features/igb.ini b/doc/guides/nics/features/igb.ini index 1145027..4a4056a 100644 --- a/doc/guides/nics/features/igb.ini +++ b/doc/guides/nics/features/igb.ini @@ -26,6 +26,7 @@ N-tuple filter = Y SYN filter = Y Flexible filter = Y Flow control = Y +Flow API = Y CRC offload = Y VLAN offload = Y QinQ offload = Y diff --git a/doc/guides/rel_notes/release_17_08.rst b/doc/guides/rel_notes/release_17_08.rst index 7f12120..ce692e9 100644 --- a/doc/guides/rel_notes/release_17_08.rst +++ b/doc/guides/rel_notes/release_17_08.rst @@ -56,6 +56,15 @@ New Features TX and RX path reworked to improve performance. Also reduced latency for slow traffic. +* **Added support for generic flow API (rte_flow) on igb NIC.** + + This API provides a generic means to configure hardware to match specific + ingress or egress traffic, alter its behavior and query related counters + according to any number of user-defined rules. + + * Generic flow API support for Ethernet, IPv4, UDP, TCP and + RAW pattern items with QUEUE actions. There are four + type of filter support for this feature on igb. Resolved Issues ---------------