MCPcopy Index your code
hub / github.com/F-Stack/f-stack / is_valid_ordered_queue_conf

Function is_valid_ordered_queue_conf

dpdk/lib/eventdev/rte_eventdev.c:590–604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

588}
589
590static inline int
591is_valid_ordered_queue_conf(const struct rte_event_queue_conf *queue_conf)
592{
593 if (queue_conf &&
594 !(queue_conf->event_queue_cfg &
595 RTE_EVENT_QUEUE_CFG_SINGLE_LINK) &&
596 ((queue_conf->event_queue_cfg &
597 RTE_EVENT_QUEUE_CFG_ALL_TYPES) ||
598 (queue_conf->schedule_type
599 == RTE_SCHED_TYPE_ORDERED)
600 ))
601 return 1;
602 else
603 return 0;
604}
605
606
607int

Callers 1

rte_event_queue_setupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected