Lines Matching refs:port_conf

623 				 struct rte_event_port_conf *port_conf)  in rte_event_port_default_conf_get()  argument
630 if (port_conf == NULL) in rte_event_port_default_conf_get()
639 memset(port_conf, 0, sizeof(struct rte_event_port_conf)); in rte_event_port_default_conf_get()
640 (*dev->dev_ops->port_def_conf)(dev, port_id, port_conf); in rte_event_port_default_conf_get()
646 const struct rte_event_port_conf *port_conf) in rte_event_port_setup() argument
661 if ((port_conf && !port_conf->new_event_threshold) || in rte_event_port_setup()
662 (port_conf && port_conf->new_event_threshold > in rte_event_port_setup()
666 dev_id, port_id, port_conf->new_event_threshold, in rte_event_port_setup()
672 if ((port_conf && !port_conf->dequeue_depth) || in rte_event_port_setup()
673 (port_conf && port_conf->dequeue_depth > in rte_event_port_setup()
677 dev_id, port_id, port_conf->dequeue_depth, in rte_event_port_setup()
683 if ((port_conf && !port_conf->enqueue_depth) || in rte_event_port_setup()
684 (port_conf && port_conf->enqueue_depth > in rte_event_port_setup()
688 dev_id, port_id, port_conf->enqueue_depth, in rte_event_port_setup()
693 if (port_conf && in rte_event_port_setup()
694 (port_conf->event_port_cfg & RTE_EVENT_PORT_CFG_DISABLE_IMPL_REL) && in rte_event_port_setup()
711 if (port_conf == NULL) { in rte_event_port_setup()
715 port_conf = &def_conf; in rte_event_port_setup()
718 dev->data->ports_cfg[port_id] = *port_conf; in rte_event_port_setup()
720 diag = (*dev->dev_ops->port_setup)(dev, port_id, port_conf); in rte_event_port_setup()
726 rte_eventdev_trace_port_setup(dev_id, port_id, port_conf, diag); in rte_event_port_setup()