From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v9 3/9] eventtimer: add common code Date: Tue, 3 Apr 2018 05:05:34 +0530 Message-ID: <20180402233533.GD31895@jerin> 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> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: pbhagavatula@caviumnetworks.com, dev@dpdk.org, hemant.agrawal@nxp.com To: Erik Gabriel Carrillo Return-path: Received: from NAM02-BL2-obe.outbound.protection.outlook.com (mail-bl2nam02on0044.outbound.protection.outlook.com [104.47.38.44]) by dpdk.org (Postfix) with ESMTP id A9FEE1B3FF for ; Tue, 3 Apr 2018 01:35:51 +0200 (CEST) Content-Disposition: inline In-Reply-To: <1522697994-22515-4-git-send-email-erik.g.carrillo@intel.com> 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----- > 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; rte_event_timer_init() function is missing and it referenced in programmers guide too. It suppose to be in the lib/librte_eventdev/rte_event_timer_adapter.h as static inline function. > + rte_event_timer_arm_burst; > + rte_event_timer_arm_tmo_tick_burst; > + rte_event_timer_cancel_burst; > +} DPDK_18.02; > -- > 2.6.4 >