| 614 | } |
| 615 | |
| 616 | rte_graph_t |
| 617 | rte_graph_from_name(const char *name) |
| 618 | { |
| 619 | struct graph *graph; |
| 620 | |
| 621 | STAILQ_FOREACH(graph, &graph_list, next) |
| 622 | if (strncmp(graph->name, name, RTE_GRAPH_NAMESIZE) == 0) |
| 623 | return graph->id; |
| 624 | |
| 625 | return RTE_GRAPH_ID_INVALID; |
| 626 | } |
| 627 | |
| 628 | char * |
| 629 | rte_graph_id_to_name(rte_graph_t id) |