From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id A567F7CF9 for ; Fri, 2 Jun 2017 08:45:31 +0200 (CEST) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jun 2017 23:45:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,283,1493708400"; d="scan'208";a="110013415" Received: from dpdk1.bj.intel.com ([172.16.182.84]) by fmsmga006.fm.intel.com with ESMTP; 01 Jun 2017 23:45:28 -0700 From: Wei Zhao To: dev@dpdk.org Cc: wenzhuo.lu@intel.com Date: Fri, 2 Jun 2017 14:36:20 +0800 Message-Id: <1496385391-12445-1-git-send-email-wei.zhao1@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1495523581-56027-1-git-send-email-wei.zhao1@intel.com> References: <1495523581-56027-1-git-send-email-wei.zhao1@intel.com> Subject: [dpdk-dev] [PATCH 00/11] net/e1000: Consistent filter API 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, 02 Jun 2017 06:45:32 -0000 The patches mainly finish following functions: 1) Store and restore all kinds of filters. 2) Parse all kinds of filters. 3) Add flow validate function. 4) Add flow create function. 5) Add flow destroy function. 6) Add flow flush function. v2 changes: fix git log warning rebase patch set zhao wei (11): net/e1000: store and restore TCP SYN filter net/e1000: restore n-tuple filter net/e1000: restore ether type filter net/e1000: restore flex type filter net/e1000: parse n-tuple filter net/e1000: parse ethertype filter net/e1000: parse TCP SYN filter net/e1000: parse flex filter net/e1000: create consistent filter net/e1000: destroy consistent filter net/e1000: flush all the filter drivers/net/e1000/Makefile | 1 + drivers/net/e1000/e1000_ethdev.h | 87 +- drivers/net/e1000/igb_ethdev.c | 623 +++++++++----- drivers/net/e1000/igb_flow.c | 1714 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 2211 insertions(+), 214 deletions(-) create mode 100644 drivers/net/e1000/igb_flow.c -- 2.9.3