Lines Matching refs:port_conf

713 				 struct rte_event_port_conf *port_conf)  in rte_event_port_default_conf_get()  argument
720 if (port_conf == NULL) in rte_event_port_default_conf_get()
729 memset(port_conf, 0, sizeof(struct rte_event_port_conf)); in rte_event_port_default_conf_get()
730 (*dev->dev_ops->port_def_conf)(dev, port_id, port_conf); in rte_event_port_default_conf_get()
736 const struct rte_event_port_conf *port_conf) in rte_event_port_setup() argument
751 if ((port_conf && !port_conf->new_event_threshold) || in rte_event_port_setup()
752 (port_conf && port_conf->new_event_threshold > in rte_event_port_setup()
756 dev_id, port_id, port_conf->new_event_threshold, in rte_event_port_setup()
762 if ((port_conf && !port_conf->dequeue_depth) || in rte_event_port_setup()
763 (port_conf && port_conf->dequeue_depth > in rte_event_port_setup()
767 dev_id, port_id, port_conf->dequeue_depth, in rte_event_port_setup()
773 if ((port_conf && !port_conf->enqueue_depth) || in rte_event_port_setup()
774 (port_conf && port_conf->enqueue_depth > in rte_event_port_setup()
778 dev_id, port_id, port_conf->enqueue_depth, in rte_event_port_setup()
783 if (port_conf && in rte_event_port_setup()
784 (port_conf->event_port_cfg & RTE_EVENT_PORT_CFG_DISABLE_IMPL_REL) && in rte_event_port_setup()
801 if (port_conf == NULL) { in rte_event_port_setup()
805 port_conf = &def_conf; in rte_event_port_setup()
808 dev->data->ports_cfg[port_id] = *port_conf; in rte_event_port_setup()
810 diag = (*dev->dev_ops->port_setup)(dev, port_id, port_conf); in rte_event_port_setup()
816 rte_eventdev_trace_port_setup(dev_id, port_id, port_conf, diag); in rte_event_port_setup()