From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 36BDF68FB for ; Mon, 20 Oct 2014 07:32:33 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 19 Oct 2014 22:40:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,749,1406617200"; d="scan'208";a="607924947" Received: from shvmail01.sh.intel.com ([10.239.29.42]) by fmsmga001.fm.intel.com with ESMTP; 19 Oct 2014 22:40:41 -0700 Received: from shecgisg004.sh.intel.com (shecgisg004.sh.intel.com [10.239.29.89]) by shvmail01.sh.intel.com with ESMTP id s9K5edg0032647; Mon, 20 Oct 2014 13:40:39 +0800 Received: from shecgisg004.sh.intel.com (localhost [127.0.0.1]) by shecgisg004.sh.intel.com (8.13.6/8.13.6/SuSE Linux 0.8) with ESMTP id s9K5eb6S016256; Mon, 20 Oct 2014 13:40:39 +0800 Received: (from wujingji@localhost) by shecgisg004.sh.intel.com (8.13.6/8.13.6/Submit) id s9K5eb94016252; Mon, 20 Oct 2014 13:40:37 +0800 From: Jingjing Wu To: dev@dpdk.org Date: Mon, 20 Oct 2014 13:40:31 +0800 Message-Id: <1413783633-16222-1-git-send-email-jingjing.wu@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1413502161-31403-1-git-send-email-jingjing.wu@intel.com> References: <1413502161-31403-1-git-send-email-jingjing.wu@intel.com> Subject: [dpdk-dev] [PATCH v2 0/2] new filter APIs definition X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Oct 2014 05:32:34 -0000 new filter APIs definition in ethdev define filter_ctrl ops in i40e driver v2 changes: remove OP from the name of filter opeartions add API implementation in i40e. correct comments Jingjing Wu (2): librte_ether: new filter APIs definition i40e: define filter_ctrl ops in i40e driver lib/librte_ether/Makefile | 1 + lib/librte_ether/rte_eth_ctrl.h | 80 +++++++++++++++++++++++++++++++++++++++ lib/librte_ether/rte_ethdev.c | 32 ++++++++++++++++ lib/librte_ether/rte_ethdev.h | 44 +++++++++++++++++++++ lib/librte_pmd_i40e/i40e_ethdev.c | 63 ++++++++++++++++++++++++++++++ 5 files changed, 220 insertions(+) create mode 100644 lib/librte_ether/rte_eth_ctrl.h -- 1.8.1.4