Searched defs:tx_space (Results 1 - 5 of 5) sorted by relevance

/drivers/net/ethernet/micrel/
H A Dks8851.c117 u16 tx_space; member in struct:ks8851_net
633 ks->tx_space = ks8851_rdreg16(ks, KS_TXMIR);
636 "%s: txspace %d\n", __func__, ks->tx_space);
942 if (needed > ks->tx_space) {
946 ks->tx_space -= needed;
1425 ks->tx_space = 6144;
/drivers/net/ethernet/alteon/
H A Dacenic.h703 static inline int tx_space (struct ace_private *ap, u32 csm, u32 prd) function
708 #define tx_free(ap) tx_space((ap)->tx_ret_csm, (ap)->tx_prd, ap)
709 #define tx_ring_full(ap, csm, prd) (tx_space(ap, csm, prd) <= TX_RESERVED)
/drivers/net/ethernet/intel/e1000/
H A De1000_main.c567 u32 pba = 0, tx_space, min_tx_space, min_rx_space; local
627 tx_space = pba >> 16;
647 if (tx_space < min_tx_space &&
648 ((min_tx_space - tx_space) < pba)) {
649 pba = pba - (min_tx_space - tx_space);
/drivers/net/ethernet/intel/e1000e/
H A Dnetdev.c3783 u32 tx_space, min_tx_space, min_rx_space; local
3800 tx_space = pba >> 16;
3819 if ((tx_space < min_tx_space) &&
3820 ((min_tx_space - tx_space) < pba)) {
3821 pba -= min_tx_space - tx_space;
/drivers/net/ethernet/intel/igb/
H A Digb_main.c1874 u32 pba = 0, tx_space, min_tx_space, min_rx_space, hwm; local
1912 tx_space = pba >> 16;
1932 if (tx_space < min_tx_space &&
1933 ((min_tx_space - tx_space) < pba)) {
1934 pba = pba - (min_tx_space - tx_space);

Completed in 168 milliseconds