Home
last modified time | relevance | path

Searched refs:rx_conf (Results 1 – 25 of 100) sorted by relevance

1234

/f-stack/dpdk/lib/librte_ethdev/
H A Drte_ethdev_trace.h43 const struct rte_eth_rxconf *rx_conf, int rc),
48 rte_trace_point_emit_u8(rx_conf->rx_thresh.pthresh);
49 rte_trace_point_emit_u8(rx_conf->rx_thresh.hthresh);
50 rte_trace_point_emit_u8(rx_conf->rx_thresh.wthresh);
51 rte_trace_point_emit_u8(rx_conf->rx_drop_en);
52 rte_trace_point_emit_u8(rx_conf->rx_deferred_start);
53 rte_trace_point_emit_u64(rx_conf->offloads);
/f-stack/dpdk/examples/qos_sched/
H A Dinit.c74 struct rte_eth_rxconf rx_conf; in app_init_port() local
85 rx_conf.rx_thresh.pthresh = rx_thresh.pthresh; in app_init_port()
86 rx_conf.rx_thresh.hthresh = rx_thresh.hthresh; in app_init_port()
87 rx_conf.rx_thresh.wthresh = rx_thresh.wthresh; in app_init_port()
88 rx_conf.rx_free_thresh = 32; in app_init_port()
89 rx_conf.rx_drop_en = 0; in app_init_port()
90 rx_conf.rx_deferred_start = 0; in app_init_port()
130 rx_conf.offloads = local_port_conf.rxmode.offloads; in app_init_port()
132 rte_eth_dev_socket_id(portid), &rx_conf, mp); in app_init_port()
/f-stack/dpdk/examples/performance-thread/l3fwd-thread/
H A Dmain.c2129 struct thread_rx_conf *rx_conf; in lthread_rx() local
2132 lthread_set_data((void *)rx_conf); in lthread_rx()
2139 if (rx_conf->n_rx_queue == 0) { in lthread_rx()
2174 SET_CPU_BUSY(rx_conf, CPU_POLL); in lthread_rx()
2185 rx_conf->ring[worker_id], in lthread_rx()
2386 struct thread_rx_conf *rx_conf; in pthread_rx() local
2391 if (rx_conf->n_rx_queue == 0) { in pthread_rx()
2548 struct thread_rx_conf *rx_conf; in init_rx_rings() local
2582 rx_conf->ring[rx_conf->n_ring] = ring; in init_rx_rings()
2585 tx_conf->ready = &rx_conf->ready[rx_conf->n_ring]; in init_rx_rings()
[all …]
/f-stack/dpdk/app/test-pmd/
H A Dtestpmd.c1482 port->rx_conf[k].offloads = in init_config()
2473 rx_conf->rx_seg = NULL; in rx_queue_setup()
2474 rx_conf->rx_nseg = 0; in rx_queue_setup()
2477 rx_conf, mp); in rx_queue_setup()
2498 rx_conf->rx_seg = rx_useg; in rx_queue_setup()
2500 socket_id, rx_conf, NULL); in rx_queue_setup()
2501 rx_conf->rx_seg = NULL; in rx_queue_setup()
2502 rx_conf->rx_nseg = 0; in rx_queue_setup()
2623 &(port->rx_conf[qi]), in start_port()
2639 &(port->rx_conf[qi]), in start_port()
[all …]
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_rx.c931 const struct rte_eth_rxconf *rx_conf, in sfc_rx_qcheck_conf() argument
936 if (rx_conf->rx_thresh.pthresh != 0 || in sfc_rx_qcheck_conf()
937 rx_conf->rx_thresh.hthresh != 0 || in sfc_rx_qcheck_conf()
938 rx_conf->rx_thresh.wthresh != 0) { in sfc_rx_qcheck_conf()
943 if (rx_conf->rx_free_thresh > rxq_max_fill_level) { in sfc_rx_qcheck_conf()
946 rx_conf->rx_free_thresh, rxq_max_fill_level); in sfc_rx_qcheck_conf()
950 if (rx_conf->rx_drop_en == 0) { in sfc_rx_qcheck_conf()
1061 const struct rte_eth_rxconf *rx_conf, in sfc_rx_qinit() argument
1095 offloads = rx_conf->offloads | in sfc_rx_qinit()
1165 rx_free_thresh = (rx_conf->rx_free_thresh != 0) ? in sfc_rx_qinit()
[all …]
H A Dsfc_rx.h130 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/app/test-pipeline/
H A Dinit.c86 static struct rte_eth_rxconf rx_conf = { variable
222 &rx_conf, in app_init_ports()
/f-stack/dpdk/app/test-eventdev/
H A Dtest_pipeline_common.c171 struct rte_eth_rxconf rx_conf; in pipeline_ethdev_setup() local
226 rx_conf = dev_info.default_rxconf; in pipeline_ethdev_setup()
227 rx_conf.offloads = port_conf.rxmode.offloads; in pipeline_ethdev_setup()
248 rte_socket_id(), &rx_conf, t->pool) < 0) { in pipeline_ethdev_setup()
/f-stack/dpdk/drivers/net/ark/
H A Dark_ethdev_rx.h21 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/txgbe/
H A Dtxgbe_rxtx.c2468 const struct rte_eth_rxconf *rx_conf, in txgbe_dev_rx_queue_setup() argument
2508 rxq->rx_free_thresh = rx_conf->rx_free_thresh; in txgbe_dev_rx_queue_setup()
2517 rxq->drop_en = rx_conf->rx_drop_en; in txgbe_dev_rx_queue_setup()
3156 struct rte_eth_dcb_rx_conf *rx_conf = in txgbe_dcb_rx_config() local
3172 j = rx_conf->dcb_tc[i]; in txgbe_dcb_rx_config()
4165 if (rx_conf->offloads & DEV_RX_OFFLOAD_KEEP_CRC) in txgbe_dev_rx_init()
4176 TXGBE_FRMSZ_MAX(rx_conf->max_rx_pkt_len)); in txgbe_dev_rx_init()
4198 rx_conf->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP; in txgbe_dev_rx_init()
4208 if (rx_conf->offloads & DEV_RX_OFFLOAD_KEEP_CRC) in txgbe_dev_rx_init()
4249 if (rx_conf->offloads & DEV_RX_OFFLOAD_SCATTER) in txgbe_dev_rx_init()
[all …]
/f-stack/dpdk/drivers/net/ionic/
H A Dionic_rxtx.h27 const struct rte_eth_rxconf *rx_conf, struct rte_mempool *mp);
/f-stack/dpdk/drivers/net/bnxt/
H A Dbnxt_reps.h37 rx_conf,
H A Dbnxt_rxq.h53 const struct rte_eth_rxconf *rx_conf,
H A Dbnxt_rxq.c301 const struct rte_eth_rxconf *rx_conf, in bnxt_rx_queue_setup_op() argument
343 if (rx_conf->rx_drop_en != BNXT_DEFAULT_RX_DROP_EN) in bnxt_rx_queue_setup_op()
379 rxq->rx_deferred_start = rx_conf->rx_deferred_start; in bnxt_rx_queue_setup_op()
/f-stack/dpdk/examples/eventdev_pipeline/
H A Dpipeline_worker_generic.c283 struct rte_eth_rxconf rx_conf; in port_init() local
322 rx_conf = dev_info.default_rxconf; in port_init()
323 rx_conf.offloads = port_conf.rxmode.offloads; in port_init()
344 rte_eth_dev_socket_id(port), &rx_conf, in port_init()
H A Dpipeline_worker_tx.c614 struct rte_eth_rxconf rx_conf; in port_init() local
649 rx_conf = dev_info.default_rxconf; in port_init()
650 rx_conf.offloads = port_conf.rxmode.offloads; in port_init()
671 rte_eth_dev_socket_id(port), &rx_conf, in port_init()
/f-stack/dpdk/drivers/net/bnx2x/
H A Dbnx2x_rxtx.h68 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/igc/
H A Digc_txrx.h22 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/netvsc/
H A Dhn_var.h190 const struct rte_eth_rxconf *rx_conf,
250 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/cxgbe/
H A Dcxgbe_pfvf.h36 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/ixgbe/
H A Dixgbe_rxtx.c3027 const struct rte_eth_rxconf *rx_conf, in ixgbe_dev_rx_queue_setup() argument
3066 rxq->rx_free_thresh = rx_conf->rx_free_thresh; in ixgbe_dev_rx_queue_setup()
3075 rxq->drop_en = rx_conf->rx_drop_en; in ixgbe_dev_rx_queue_setup()
3895 struct rte_eth_dcb_rx_conf *rx_conf = in ixgbe_dcb_rx_config() local
3911 j = rx_conf->dcb_tc[i]; in ixgbe_dcb_rx_config()
5034 if (rx_conf->offloads & DEV_RX_OFFLOAD_KEEP_CRC) in ixgbe_dev_rx_init()
5046 maxfrs |= (rx_conf->max_rx_pkt_len << 16); in ixgbe_dev_rx_init()
5071 rx_conf->offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP; in ixgbe_dev_rx_init()
5080 if (rx_conf->offloads & DEV_RX_OFFLOAD_KEEP_CRC) in ixgbe_dev_rx_init()
5127 if (rx_conf->offloads & DEV_RX_OFFLOAD_SCATTER) in ixgbe_dev_rx_init()
[all …]
/f-stack/dpdk/drivers/net/virtio/
H A Dvirtio_ethdev.h67 const struct rte_eth_rxconf *rx_conf,
/f-stack/dpdk/drivers/net/nfb/
H A Dnfb_rx.h90 const struct rte_eth_rxconf *rx_conf __rte_unused,
H A Dnfb_rx.c110 const struct rte_eth_rxconf *rx_conf __rte_unused, in nfb_eth_rx_queue_setup()
/f-stack/dpdk/drivers/net/atlantic/
H A Datl_ethdev.h62 const struct rte_eth_rxconf *rx_conf,

1234