-----Original Message----- > Date: Mon, 2 Apr 2018 14:39:48 -0500 > From: Erik Gabriel Carrillo <[email protected]> > To: [email protected] > CC: [email protected], [email protected], [email protected] > 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 <[email protected]> > --- > + > +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 >

