From mboxrd@z Thu Jan 1 00:00:00 1970 From: Akhil Goyal Subject: Re: [PATCH v5 01/11] lib/rte_security: add security library Date: Wed, 25 Oct 2017 16:38:00 +0530 Message-ID: <9db8c78d-5f0d-6561-66f9-816c495cfdb0@nxp.com> References: <20171014221734.15511-1-akhil.goyal@nxp.com> <20171024141545.30837-1-akhil.goyal@nxp.com> <20171024141545.30837-2-akhil.goyal@nxp.com> <2031024.JVCIT9oVUT@xps> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Cc: , , , , , , , , , , , , To: Thomas Monjalon Return-path: Received: from NAM02-CY1-obe.outbound.protection.outlook.com (mail-cys01nam02on0079.outbound.protection.outlook.com [104.47.37.79]) by dpdk.org (Postfix) with ESMTP id 21DA71B5E6 for ; Wed, 25 Oct 2017 13:08:08 +0200 (CEST) In-Reply-To: <2031024.JVCIT9oVUT@xps> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Hi Thomas, On 10/25/2017 2:17 AM, Thomas Monjalon wrote: > Hi, > > I am waiting the crypto subtree to be ready before getting this series. > > Some last comments below, > > 24/10/2017 16:15, Akhil Goyal: >> +Security API - EXPERIMENTAL >> +M: Akhil Goyal >> +M: Declan Doherty >> +F: lib/librte_security/ >> +F: doc/guides/prog_guide/rte_security.rst >> >> Networking Drivers >> ------------------ > > An additional blank line is missing. > > >> +# build flags >> +CFLAGS += -O3 >> +CFLAGS += $(WERROR_FLAGS) > > As said by Pablo, please fix the build with LDLIBS. > > >> +/** >> + * @file rte_security.h >> + * >> + * RTE Security Common Definitions >> + * >> + */ > > You should add this line: > > @b EXPERIMENTAL: this API may change without prior notice > > >> --- /dev/null >> +++ b/lib/librte_security/rte_security_version.map >> @@ -0,0 +1,13 @@ >> +DPDK_17.11 { > > The name of this block should be EXPERIMENTAL > >> + global: >> + >> + rte_security_attach_session; >> + rte_security_capabilities_get; >> + rte_security_capability_get; >> + rte_security_session_create; >> + rte_security_session_destroy; >> + rte_security_session_stats_get; >> + rte_security_session_update; >> + rte_security_set_pkt_metadata; >> + >> +}; > > I think you need this line: > local: *; > > Will Correct all this in v6. Thanks, Akhil