From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id B35491B64B for ; Mon, 23 Oct 2017 18:03:34 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Oct 2017 09:03:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,423,1503385200"; d="scan'208";a="1028320862" Received: from irsmsx108.ger.corp.intel.com ([163.33.3.3]) by orsmga003.jf.intel.com with ESMTP; 23 Oct 2017 09:03:32 -0700 Received: from irsmsx155.ger.corp.intel.com (163.33.192.3) by IRSMSX108.ger.corp.intel.com (163.33.3.3) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 23 Oct 2017 17:03:31 +0100 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.49]) by irsmsx155.ger.corp.intel.com ([169.254.14.169]) with mapi id 14.03.0319.002; Mon, 23 Oct 2017 17:03:31 +0100 From: "Singh, Jasvinder" To: "Iremonger, Bernard" , "dev@dpdk.org" , "Yigit, Ferruh" , "Ananyev, Konstantin" , "Dumitrescu, Cristian" , "adrien.mazarguil@6wind.com" Thread-Topic: [PATCH v10 1/4] librte_flow_classify: add flow classify library Thread-Index: AQHTTBHp4SuZdCc0AE2I0gEh2vLl86LxmCGw Date: Mon, 23 Oct 2017 16:03:30 +0000 Message-ID: <54CBAA185211B4429112C315DA58FF6D33278413@IRSMSX103.ger.corp.intel.com> References: <1508679124-5922-1-git-send-email-bernard.iremonger@intel.com> <1508771778-617-2-git-send-email-bernard.iremonger@intel.com> In-Reply-To: <1508771778-617-2-git-send-email-bernard.iremonger@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYmY5NjFmYTMtYmM1ZS00ODQ2LThmOGEtNGI5NTZkMGQ1OTk0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IkZNVzhJUGlMT3N4NnRRdWNtVWkremx4Zzlwc0c5Y0ZiNWFcL0xwKzJRVG9nPSJ9 x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v10 1/4] librte_flow_classify: add flow classify library 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, 23 Oct 2017 16:03:35 -0000 > -----Original Message----- > From: Iremonger, Bernard > Sent: Monday, October 23, 2017 4:16 PM > To: dev@dpdk.org; Yigit, Ferruh ; Ananyev, > Konstantin ; Dumitrescu, Cristian > ; adrien.mazarguil@6wind.com; Singh, > Jasvinder > Cc: Iremonger, Bernard > Subject: [PATCH v10 1/4] librte_flow_classify: add flow classify library >=20 > From: Ferruh Yigit >=20 > The following APIs's are implemented in the > librte_flow_classify library: >=20 > rte_flow_classifier_create > rte_flow_classifier_free > rte_flow_classifier_query > rte_flow_classify_table_create > rte_flow_classify_table_entry_add > rte_flow_classify_table_entry_delete >=20 > The following librte_table API's are used: > f_create to create a table. > f_add to add a rule to the table. > f_del to delete a rule from the table. > f_free to free a table > f_lookup to match packets with the rules. >=20 > The library supports counting of IPv4 five tupple packets only, > ie IPv4 UDP, TCP and SCTP packets. >=20 > Signed-off-by: Ferruh Yigit > Signed-off-by: Bernard Iremonger > --- Acked-by: Jasvinder Singh