Worker thread function */
| 610 | |
| 611 | /* Worker thread function */ |
| 612 | static int |
| 613 | _graph_perf_wrapper(void *args) |
| 614 | { |
| 615 | struct graph_lcore_data *data = args; |
| 616 | struct rte_graph *graph; |
| 617 | |
| 618 | /* Lookup graph */ |
| 619 | graph = rte_graph_lookup(rte_graph_id_to_name(data->graph_id)); |
| 620 | |
| 621 | /* Graph walk until done */ |
| 622 | while (!data->done) |
| 623 | rte_graph_walk(graph); |
| 624 | |
| 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | static int |
| 629 | measure_perf_get(rte_graph_t graph_id) |
nothing calls this directly
no test coverage detected