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

Function rte_event_dev_dump

dpdk/lib/eventdev/rte_eventdev.c:1298–1313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1296}
1297
1298int
1299rte_event_dev_dump(uint8_t dev_id, FILE *f)
1300{
1301 struct rte_eventdev *dev;
1302
1303 RTE_EVENTDEV_VALID_DEVID_OR_ERR_RET(dev_id, -EINVAL);
1304 dev = &rte_eventdevs[dev_id];
1305 if (*dev->dev_ops->dump == NULL)
1306 return -ENOTSUP;
1307 if (f == NULL)
1308 return -EINVAL;
1309
1310 (*dev->dev_ops->dump)(dev, f);
1311 return 0;
1312
1313}
1314
1315static int
1316xstats_get_count(uint8_t dev_id, enum rte_event_dev_xstats_mode mode,

Callers 15

handle_dev_dumpFunction · 0.85
ordered_basicFunction · 0.85
atomic_basicFunction · 0.85
run_prio_packet_testFunction · 0.85
burst_packetsFunction · 0.85
xstats_testsFunction · 0.85
port_reconfig_creditsFunction · 0.85
qid_prioritiesFunction · 0.85
invalid_qidFunction · 0.85
single_packetFunction · 0.85
inflight_countsFunction · 0.85
parallel_basicFunction · 0.85

Calls

no outgoing calls

Tested by 15

ordered_basicFunction · 0.68
atomic_basicFunction · 0.68
run_prio_packet_testFunction · 0.68
burst_packetsFunction · 0.68
xstats_testsFunction · 0.68
port_reconfig_creditsFunction · 0.68
qid_prioritiesFunction · 0.68
invalid_qidFunction · 0.68
single_packetFunction · 0.68
inflight_countsFunction · 0.68
parallel_basicFunction · 0.68
holbFunction · 0.68