MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_graph_lookup

Function rte_graph_lookup

dpdk/lib/graph/graph.c:369–380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

367}
368
369struct rte_graph *
370rte_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
382rte_graph_t
383rte_graph_create(const char *name, struct rte_graph_param *prm)

Callers 7

_graph_perf_wrapperFunction · 0.85
test_graph_walkFunction · 0.85
l3fwd_pattern_configureFunction · 0.85
graph_config_rtcFunction · 0.85

Calls 2

rte_memzone_lookupFunction · 0.85