Re: [dpdk-dev] [PATCH] eal: optimize timer routines

2017-05-01 Thread Thomas Monjalon
01/05/2017 21:12, Jerin Jacob: > Since DPDK has only two timer sources, > Avoid &eal_timer_source memory read and followed > by the switch case statement when > RTE_LIBEAL_USE_HPET is not defined. [...] > static inline uint64_t > rte_get_timer_cycles(void) > { > +#ifdef RTE_LIBEAL_USE_HPET >

[dpdk-dev] [PATCH] eal: optimize timer routines

2017-05-01 Thread Jerin Jacob
Since DPDK has only two timer sources, Avoid &eal_timer_source memory read and followed by the switch case statement when RTE_LIBEAL_USE_HPET is not defined. Signed-off-by: Jerin Jacob --- lib/librte_eal/common/include/generic/rte_cycles.h | 12 1 file changed, 8 insertions(+), 4 de