| 292 | } |
| 293 | |
| 294 | static struct rte_graph * |
| 295 | graph_mem_fixup_secondary(struct rte_graph *graph) |
| 296 | { |
| 297 | if (graph == NULL || rte_eal_process_type() == RTE_PROC_PRIMARY) |
| 298 | return graph; |
| 299 | |
| 300 | if (graph_pcap_file_open(graph->pcap_filename) || graph_pcap_mp_init()) |
| 301 | graph_pcap_exit(graph); |
| 302 | |
| 303 | return graph_mem_fixup_node_ctx(graph); |
| 304 | } |
| 305 | |
| 306 | static bool |
| 307 | graph_src_node_avail(struct graph *graph) |
no test coverage detected