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

Function rte_bbdev_find_next

dpdk/lib/bbdev/rte_bbdev.c:302–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

300}
301
302uint16_t
303rte_bbdev_find_next(uint16_t dev_id)
304{
305 dev_id++;
306 for (; dev_id < RTE_BBDEV_MAX_DEVS; dev_id++)
307 if (rte_bbdev_is_valid(dev_id))
308 break;
309 return dev_id;
310}
311
312int
313rte_bbdev_setup_queues(uint16_t dev_id, uint16_t num_queues, int socket_id)

Callers

nothing calls this directly

Calls 1

rte_bbdev_is_validFunction · 0.85

Tested by

no test coverage detected