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

Function rte_bbdev_enqueue_mldts_ops

dpdk/lib/bbdev/rte_bbdev.h:714–721  ·  view source on GitHub ↗

* Enqueue a burst of MLDTS operations to a queue of the device. * This functions only enqueues as many operations as currently possible and * does not block until @p num_ops entries in the queue are available. * This function does not provide any error notification to avoid the * corresponding overhead. * * @param dev_id * The identifier of the device. * @param queue_id * The index of

Source from the content-addressed store, hash-verified

712 * entries in the @p ops array).
713 */
714static inline uint16_t
715rte_bbdev_enqueue_mldts_ops(uint16_t dev_id, uint16_t queue_id,
716 struct rte_bbdev_mldts_op **ops, uint16_t num_ops)
717{
718 struct rte_bbdev *dev = &rte_bbdev_devices[dev_id];
719 struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id];
720 return dev->enqueue_mldts_ops(q_data, ops, num_ops);
721}
722
723/**
724 * Dequeue a burst of processed encode operations from a queue of the device.

Callers 4

latency_test_mldtsFunction · 0.85

Calls

no outgoing calls

Tested by 4

latency_test_mldtsFunction · 0.68