Lines Matching refs:wthresh
122 uint8_t wthresh; /**< Write-back threshold register. */ member
194 uint8_t wthresh; /**< Write-back threshold register. */ member
1540 if (tx_conf->tx_thresh.wthresh == 0 && hw->mac.type != e1000_82576) in eth_igb_tx_queue_setup()
1574 txq->wthresh = tx_conf->tx_thresh.wthresh; in eth_igb_tx_queue_setup()
1575 if (txq->wthresh > 0 && hw->mac.type == e1000_82576) in eth_igb_tx_queue_setup()
1576 txq->wthresh = 1; in eth_igb_tx_queue_setup()
1756 rxq->wthresh = rx_conf->rx_thresh.wthresh; in eth_igb_rx_queue_setup()
1757 if (rxq->wthresh > 0 && in eth_igb_rx_queue_setup()
1759 rxq->wthresh = 1; in eth_igb_rx_queue_setup()
2482 rxdctl |= ((rxq->wthresh & 0x1F) << 16); in eth_igb_rx_init()
2645 txdctl |= ((txq->wthresh & 0x1F) << 16); in eth_igb_tx_init()
2781 rxdctl |= ((rxq->wthresh & 0x1F) << 16); in eth_igbvf_rx_init()
2851 txdctl |= ((txq->wthresh & 0x1F) << 16); in eth_igbvf_tx_init()
2887 qinfo->conf.tx_thresh.wthresh = txq->wthresh; in igb_txq_info_get()