Home
last modified time | relevance | path

Searched refs:nb_deq_ops (Results 1 – 3 of 3) sorted by relevance

/f-stack/dpdk/drivers/crypto/scheduler/
H A Dscheduler_failover.c86 uint16_t nb_deq_ops = 0, nb_deq_ops2 = 0; in schedule_dequeue() local
89 nb_deq_ops = rte_cryptodev_dequeue_burst(worker->dev_id, in schedule_dequeue()
91 worker->nb_inflight_cops -= nb_deq_ops; in schedule_dequeue()
96 if (nb_deq_ops == nb_ops) in schedule_dequeue()
97 return nb_deq_ops; in schedule_dequeue()
103 worker->qp_id, &ops[nb_deq_ops], nb_ops - nb_deq_ops); in schedule_dequeue()
107 return nb_deq_ops + nb_deq_ops2; in schedule_dequeue()
H A Dscheduler_roundrobin.c69 uint16_t nb_deq_ops; in schedule_dequeue() local
87 nb_deq_ops = rte_cryptodev_dequeue_burst(worker->dev_id, in schedule_dequeue()
95 worker->nb_inflight_cops -= nb_deq_ops; in schedule_dequeue()
97 return nb_deq_ops; in schedule_dequeue()
H A Dscheduler_multicore.c94 uint16_t nb_deq_ops = rte_ring_dequeue_burst(deq_ring, in schedule_dequeue() local
97 nb_ops -= nb_deq_ops; in schedule_dequeue()
98 processed_ops += nb_deq_ops; in schedule_dequeue()