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

Function rte_cryptodev_driver_name_get

dpdk/lib/cryptodev/rte_cryptodev.c:2735–2748  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2733}
2734
2735const char *
2736rte_cryptodev_driver_name_get(uint8_t driver_id)
2737{
2738 struct cryptodev_driver *driver;
2739
2740 TAILQ_FOREACH(driver, &cryptodev_driver_list, next) {
2741 if (driver->id == driver_id) {
2742 rte_cryptodev_trace_driver_name_get(driver_id,
2743 driver->driver->name);
2744 return driver->driver->name;
2745 }
2746 }
2747 return NULL;
2748}
2749
2750uint8_t
2751rte_cryptodev_allocate_driver(struct cryptodev_driver *crypto_drv,

Callers 2

testsuite_setupFunction · 0.85
testsuite_setupFunction · 0.85

Calls

no outgoing calls

Tested by 2

testsuite_setupFunction · 0.68
testsuite_setupFunction · 0.68