From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Zhao Subject: [PATCH v4 0/2] move RSS to flow API Date: Thu, 4 Jan 2018 15:46:27 +0800 Message-ID: <20180104074629.126767-1-wei.zhao1@intel.com> References: <20171124080527.56495-1-wei.zhao1@intel.com> Cc: wei.dai@intel.com To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 767A91B00B for ; Thu, 4 Jan 2018 08:54:27 +0100 (CET) In-Reply-To: <20171124080527.56495-1-wei.zhao1@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The patches mainly finish following functions: 1) igb move RSS to flow API 2) ixgbe move RSS to flow API v2: -fix bug for RSS flush code. -fix patch check warning. v3: -fix bug for ixgbe rss restore. v4: -fix build warning and add release notes comment. Wei Zhao (2): net/e1000: move RSS to flow API net/ixgbe: move RSS to flow API doc/guides/rel_notes/release_18_02.rst | 6 ++ drivers/net/e1000/e1000_ethdev.h | 20 ++++ drivers/net/e1000/igb_ethdev.c | 17 ++++ drivers/net/e1000/igb_flow.c | 160 ++++++++++++++++++++++++++++++++ drivers/net/e1000/igb_rxtx.c | 61 ++++++++++++ drivers/net/ixgbe/ixgbe_ethdev.c | 13 +++ drivers/net/ixgbe/ixgbe_ethdev.h | 10 ++ drivers/net/ixgbe/ixgbe_flow.c | 165 +++++++++++++++++++++++++++++++++ drivers/net/ixgbe/ixgbe_rxtx.c | 65 +++++++++++++ 9 files changed, 517 insertions(+) -- 2.9.3