Home
last modified time | relevance | path

Searched refs:wthresh (Results 1 – 25 of 55) sorted by relevance

123

/dpdk/examples/qos_sched/
H A Dinit.c44 .wthresh = RX_WTHRESH,
50 .wthresh = TX_WTHRESH,
86 rx_conf.rx_thresh.wthresh = rx_thresh.wthresh; in app_init_port()
93 tx_conf.tx_thresh.wthresh = tx_thresh.wthresh; in app_init_port()
440 rx_thresh.pthresh, rx_thresh.hthresh, rx_thresh.wthresh, in app_init()
441 tx_thresh.pthresh, tx_thresh.hthresh, tx_thresh.wthresh); in app_init()
H A Dargs.c184 rx_thresh.wthresh = (uint8_t)vals[2]; in app_parse_rth_conf()
201 tx_thresh.wthresh = (uint8_t)vals[2]; in app_parse_tth_conf()
H A Dmain.h135 uint8_t wthresh; /**< Ring writeback threshold. */ member
/dpdk/lib/ethdev/
H A Drte_ethdev_trace.h50 rte_trace_point_emit_u8(rx_conf->rx_thresh.wthresh);
66 rte_trace_point_emit_u8(tx_conf->tx_thresh.wthresh);
/dpdk/app/test-pipeline/
H A Dinit.c89 .wthresh = 4,
99 .wthresh = 0,
/dpdk/drivers/net/e1000/
H A Digb_rxtx.c1554 txq->wthresh = tx_conf->tx_thresh.wthresh; in eth_igb_tx_queue_setup()
1555 if (txq->wthresh > 0 && hw->mac.type == e1000_82576) in eth_igb_tx_queue_setup()
1556 txq->wthresh = 1; in eth_igb_tx_queue_setup()
1725 rxq->wthresh = rx_conf->rx_thresh.wthresh; in eth_igb_rx_queue_setup()
1726 if (rxq->wthresh > 0 && in eth_igb_rx_queue_setup()
1728 rxq->wthresh = 1; in eth_igb_rx_queue_setup()
2442 rxdctl |= ((rxq->wthresh & 0x1F) << 16); in eth_igb_rx_init()
2605 txdctl |= ((txq->wthresh & 0x1F) << 16); in eth_igb_tx_init()
2741 rxdctl |= ((rxq->wthresh & 0x1F) << 16); in eth_igbvf_rx_init()
2811 txdctl |= ((txq->wthresh & 0x1F) << 16); in eth_igbvf_tx_init()
[all …]
H A Dem_rxtx.c104 uint8_t wthresh; /**< Write-back threshold register. */ member
172 uint8_t wthresh; /**< Write-back threshold register. */ member
1261 if (tx_conf->tx_thresh.wthresh != 0 && tx_rs_thresh != 1) { in eth_em_tx_queue_setup()
1305 txq->wthresh = tx_conf->tx_thresh.wthresh; in eth_em_tx_queue_setup()
1467 rxq->wthresh = rx_conf->rx_thresh.wthresh; in eth_em_rx_queue_setup()
1810 rxdctl |= (rxq->wthresh & 0x3F) << 16; in eth_em_rx_init()
1945 txdctl |= (txq->wthresh & 0x3F) << 16; in eth_em_tx_init()
2003 qinfo->conf.tx_thresh.wthresh = txq->wthresh; in em_txq_info_get()
/dpdk/drivers/net/igc/
H A Digc_txrx.c125 uint8_t wthresh; /**< Write-back threshold register. */ member
205 uint8_t wthresh; /**< Write-back threshold register. */ member
1176 rxdctl |= ((uint32_t)rxq->wthresh << IGC_RXDCTL_WTHRESH_SHIFT) & in igc_rx_init()
1357 rxq->wthresh = rx_conf->rx_thresh.wthresh; in eth_igc_rx_queue_setup()
1979 if (tx_conf->tx_thresh.wthresh == 0) in eth_igc_tx_queue_setup()
2011 txq->wthresh = tx_conf->tx_thresh.wthresh; in eth_igc_tx_queue_setup()
2186 txdctl |= ((uint32_t)txq->wthresh << IGC_TXDCTL_WTHRESH_SHIFT) & in igc_tx_init()
2221 qinfo->conf.rx_thresh.wthresh = rxq->wthresh; in eth_igc_rxq_info_get()
2236 qinfo->conf.tx_thresh.wthresh = txq->wthresh; in eth_igc_txq_info_get()
/dpdk/drivers/net/bnxt/
H A Dbnxt_txq.h21 uint8_t wthresh; /* Write-back threshold reg */ member
/dpdk/drivers/net/ice/
H A Dice_dcf_vf_representor.c173 .wthresh = ICE_DEFAULT_RX_WTHRESH, in ice_dcf_vf_repr_dev_info_get()
184 .wthresh = ICE_DEFAULT_TX_WTHRESH, in ice_dcf_vf_repr_dev_info_get()
H A Dice_rxtx.h130 uint8_t wthresh; /**< Write-back threshold reg. */ member
/dpdk/doc/guides/nics/
H A Dnfb.rst136 RX threshold registers: pthresh=0 hthresh=0 wthresh=0
138 TX threshold registers: pthresh=0 hthresh=0 wthresh=0
H A Dsoftnic.rst176 RX threshold registers: pthresh=8 hthresh=8 wthresh=0
180 TX threshold registers: pthresh=32 hthresh=0 wthresh=0
186 RX threshold registers: pthresh=0 hthresh=0 wthresh=0
190 TX threshold registers: pthresh=0 hthresh=0 wthresh=0
H A Dpcap_ring.rst242 RX threshold registers: pthresh=8 hthresh=8 wthresh=4
244 TX threshold registers: pthresh=36 hthresh=0 wthresh=0
/dpdk/app/test/
H A Dtest_kni.c60 .wthresh = 4,
69 .wthresh = 0,
H A Dtest_pmd_perf.c77 .wthresh = RX_WTHRESH,
86 .wthresh = TX_WTHRESH,
/dpdk/drivers/net/i40e/
H A Di40e_vf_representor.c76 .wthresh = I40E_DEFAULT_RX_WTHRESH, in i40e_vf_representor_dev_infos_get()
87 .wthresh = I40E_DEFAULT_TX_WTHRESH, in i40e_vf_representor_dev_infos_get()
/dpdk/drivers/net/ixgbe/
H A Dixgbe_rxtx.h229 uint8_t wthresh; /**< Write-back threshold reg. */ member
/dpdk/drivers/net/ngbe/
H A Dngbe_rxtx.h348 uint8_t wthresh; /**< Write-back threshold reg */ member
H A Dngbe_rxtx.c872 if (m->nb_segs > NGBE_TX_MAX_SEG - txq->wthresh) { in ngbe_prep_pkts()
2031 txq->wthresh = tx_conf->tx_thresh.wthresh; in ngbe_dev_tx_queue_setup()
3067 NGBE_TXCFG_WTHRESH(txq->wthresh)); in ngbe_dev_rxtx_start()
3334 qinfo->conf.tx_thresh.wthresh = txq->wthresh; in ngbe_txq_info_get()
/dpdk/drivers/net/txgbe/
H A Dtxgbe_rxtx.h394 uint8_t wthresh; /**< Write-back threshold reg. */ member
H A Dtxgbe_ethdev_vf.c504 .wthresh = TXGBE_DEFAULT_RX_WTHRESH, in txgbevf_dev_info_get()
515 .wthresh = TXGBE_DEFAULT_TX_WTHRESH, in txgbevf_dev_info_get()
/dpdk/drivers/net/sfc/
H A Dsfc_repr.c600 rx_conf->rx_thresh.wthresh != 0) { in sfc_repr_rx_qcheck_conf()
708 tx_conf->tx_thresh.wthresh != 0) { in sfc_repr_tx_qcheck_conf()
/dpdk/drivers/net/bonding/
H A Drte_eth_bond_api.c312 rxconf_i->rx_thresh.wthresh = 0; in eth_bond_slave_inherit_dev_info_rx_first()
340 txconf_i->tx_thresh.wthresh = 0; in eth_bond_slave_inherit_dev_info_tx_first()
/dpdk/drivers/net/nfp/
H A Dnfp_common.c734 .wthresh = DEFAULT_RX_WTHRESH, in nfp_net_infos_get()
744 .wthresh = DEFAULT_TX_WTHRESH, in nfp_net_infos_get()

123