| 367 | } |
| 368 | |
| 369 | struct rte_graph * |
| 370 | rte_graph_lookup(const char *name) |
| 371 | { |
| 372 | const struct rte_memzone *mz; |
| 373 | struct rte_graph *rc = NULL; |
| 374 | |
| 375 | mz = rte_memzone_lookup(name); |
| 376 | if (mz) |
| 377 | rc = mz->addr; |
| 378 | |
| 379 | return graph_mem_fixup_secondary(rc); |
| 380 | } |
| 381 | |
| 382 | rte_graph_t |
| 383 | rte_graph_create(const char *name, struct rte_graph_param *prm) |