From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Carrillo, Erik G" Subject: Re: [PATCH v9 3/9] eventtimer: add common code Date: Tue, 3 Apr 2018 18:38:17 +0000 Message-ID: References: <1522358852-3630-1-git-send-email-erik.g.carrillo@intel.com> <1522697994-22515-1-git-send-email-erik.g.carrillo@intel.com> <1522697994-22515-4-git-send-email-erik.g.carrillo@intel.com> <20180402233533.GD31895@jerin> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc: "pbhagavatula@caviumnetworks.com" , "dev@dpdk.org" , "hemant.agrawal@nxp.com" To: Jerin Jacob Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2E47D1B634 for ; Tue, 3 Apr 2018 20:38:19 +0200 (CEST) In-Reply-To: <20180402233533.GD31895@jerin> 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" > -----Original Message----- > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > Sent: Monday, April 2, 2018 6:36 PM > To: Carrillo, Erik G > Cc: pbhagavatula@caviumnetworks.com; dev@dpdk.org; > hemant.agrawal@nxp.com > Subject: Re: [PATCH v9 3/9] eventtimer: add common code >=20 > -----Original Message----- > > Date: Mon, 2 Apr 2018 14:39:48 -0500 > > From: Erik Gabriel Carrillo > > To: pbhagavatula@caviumnetworks.com > > CC: dev@dpdk.org, jerin.jacob@caviumnetworks.com, > > hemant.agrawal@nxp.com > > Subject: [PATCH v9 3/9] eventtimer: add common code > > X-Mailer: git-send-email 1.7.10 > > > > This commit adds the logic that is shared by all event timer adapter > > drivers; the common code handles instance allocation and some > > initialization. > > > > Signed-off-by: Erik Gabriel Carrillo > > --- > > + > > +EXPERIMENTAL { > > + global: > > + > > + rte_event_timer_adapter_caps_get; > > + rte_event_timer_adapter_create; > > + rte_event_timer_adapter_create_ext; > > + rte_event_timer_adapter_free; > > + rte_event_timer_adapter_get_info; > > + rte_event_timer_adapter_lookup; > > + rte_event_timer_adapter_service_id_get; > > + rte_event_timer_adapter_start; > > + rte_event_timer_adapter_stats_get; > > + rte_event_timer_adapter_stats_reset; > > + rte_event_timer_adapter_stop; > > + rte_event_timer_init; >=20 > rte_event_timer_init() function is missing and it referenced in programme= rs > guide too. > It suppose to be in the lib/librte_eventdev/rte_event_timer_adapter.h as > static inline function. =20 Thanks for catching that. I'll remove the symbol from the map file and fro= m Programmer's Guide. Regards, Gabriel >=20 > > + rte_event_timer_arm_burst; > > + rte_event_timer_arm_tmo_tick_burst; > > + rte_event_timer_cancel_burst; > > +} DPDK_18.02; > > -- > > 2.6.4 > >