From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id AF1363B5 for ; Mon, 12 Jun 2017 08:57:58 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Jun 2017 23:57:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,332,1493708400"; d="scan'208";a="866931176" Received: from dpdk1.bj.intel.com ([172.16.182.84]) by FMSMGA003.fm.intel.com with ESMTP; 11 Jun 2017 23:57:56 -0700 From: Wei Zhao To: dev@dpdk.org Cc: wenzhuo.lu@intel.com Date: Mon, 12 Jun 2017 14:48:17 +0800 Message-Id: <1497250108-34752-1-git-send-email-wei.zhao1@intel.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1497249016-33565-1-git-send-email-wei.zhao1@intel.com> References: <1497249016-33565-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: Mon, 12 Jun 2017 06:57:59 -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 v3 change: add 2_tuple filter check for too many parameters change style of coding in igb_ntuple_filter_uninit replace pattern check with NEXT_ITEM_OF_PATTERN fix git log warning v4 change: fix build error fix patch check warning v5 change: fix patch check warning root (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 | 94 ++- drivers/net/e1000/igb_ethdev.c | 631 +++++++++----- drivers/net/e1000/igb_flow.c | 1681 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 2181 insertions(+), 226 deletions(-) create mode 100644 drivers/net/e1000/igb_flow.c -- 2.9.3