| 588 | } |
| 589 | |
| 590 | static inline int |
| 591 | is_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 | |
| 607 | int |
no outgoing calls
no test coverage detected