| 2362 | } |
| 2363 | |
| 2364 | static void |
| 2365 | telemetry_setup_timer(void) |
| 2366 | { |
| 2367 | int lcore_id = rte_lcore_id(); |
| 2368 | uint64_t hz = rte_get_timer_hz(); |
| 2369 | uint64_t ticks; |
| 2370 | |
| 2371 | ticks = hz / TELEMETRY_INTERVALS_PER_SEC; |
| 2372 | rte_timer_reset_sync(&telemetry_timer, |
| 2373 | ticks, |
| 2374 | PERIODICAL, |
| 2375 | lcore_id, |
| 2376 | update_telemetry, |
| 2377 | NULL); |
| 2378 | } |
| 2379 | |
| 2380 | static int |
| 2381 | launch_timer(unsigned int lcore_id) |
no test coverage detected