From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 607AF11C5 for ; Tue, 21 Mar 2017 16:35:55 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga105.fm.intel.com with ESMTP; 21 Mar 2017 08:35:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,198,1486454400"; d="scan'208";a="1145172977" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga002.fm.intel.com with ESMTP; 21 Mar 2017 08:35:52 -0700 Received: from fmsmsx122.amr.corp.intel.com (10.18.125.37) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 21 Mar 2017 08:35:52 -0700 Received: from fmsmsx113.amr.corp.intel.com ([169.254.13.175]) by fmsmsx122.amr.corp.intel.com ([169.254.5.21]) with mapi id 14.03.0319.002; Tue, 21 Mar 2017 08:35:52 -0700 From: "Wiles, Keith" To: Pascal Mazon CC: "dev@dpdk.org" Thread-Topic: [PATCH v5 2/4] net/tap: add preliminary support for rte_flow Thread-Index: AQHSnZw4FRGjCt4R6k+NNhqMl2i6gKGf68SA Date: Tue, 21 Mar 2017 15:35:51 +0000 Message-ID: <4537247F-23EF-4BAA-AF08-48DAE2D19E35@intel.com> References: <16bd5ecec52edee428ac2d933f0332bb56dd9b23.1489589508.git.pascal.mazon@6wind.com> In-Reply-To: <16bd5ecec52edee428ac2d933f0332bb56dd9b23.1489589508.git.pascal.mazon@6wind.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.255.84.105] Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v5 2/4] net/tap: add preliminary support for rte_flow 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: Tue, 21 Mar 2017 15:35:55 -0000 > On Mar 15, 2017, at 9:54 AM, Pascal Mazon wrote: >=20 > The flow API provides the ability to classify packets received by a tap > netdevice. >=20 > This patch only implements skeleton functions for flow API support, no > patterns are supported yet. >=20 > Signed-off-by: Pascal Mazon > Acked-by: Olga Shern > +#ifndef _TAP_FLOW_H_ > +#define _TAP_FLOW_H_ > + > +#include > +#include Missing the C++ ifdefs. > + > +int tap_dev_filter_ctrl(struct rte_eth_dev *dev, > + enum rte_filter_type filter_type, > + enum rte_filter_op filter_op, > + void *arg); > +int tap_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error= ); > + > +#endif /* _TAP_FLOW_H_ */ > --=20 > 2.8.0.rc0 >=20 Regards, Keith