Lines Matching refs:txs
513 self->txs = inb_p (OBOE_TXSLOT) & OBOE_SLOT_MASK; in toshoboe_resetptrs()
840 self->ring->tx[self->txs].control = in toshoboe_probe()
845 self->ring->tx[self->txs].len = in toshoboe_probe()
846 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
847 self->txs++; in toshoboe_probe()
848 self->txs %= TX_SLOTS; in toshoboe_probe()
850 self->ring->tx[self->txs].control = in toshoboe_probe()
853 self->ring->tx[self->txs].len = in toshoboe_probe()
854 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
855 self->txs++; in toshoboe_probe()
856 self->txs %= TX_SLOTS; in toshoboe_probe()
858 self->ring->tx[self->txs].control = in toshoboe_probe()
861 self->ring->tx[self->txs].len = in toshoboe_probe()
862 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
863 self->txs++; in toshoboe_probe()
864 self->txs %= TX_SLOTS; in toshoboe_probe()
866 self->ring->tx[self->txs].control = in toshoboe_probe()
870 self->ring->tx[self->txs].len = in toshoboe_probe()
871 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
872 self->txs++; in toshoboe_probe()
873 self->txs %= TX_SLOTS; in toshoboe_probe()
913 self->ring->tx[self->txs].control = in toshoboe_probe()
915 self->ring->tx[self->txs].len = 4; in toshoboe_probe()
917 ((unsigned char *) self->tx_bufs[self->txs])[0] = 'f'; in toshoboe_probe()
918 ((unsigned char *) self->tx_bufs[self->txs])[1] = 'i'; in toshoboe_probe()
919 ((unsigned char *) self->tx_bufs[self->txs])[2] = 's'; in toshoboe_probe()
920 ((unsigned char *) self->tx_bufs[self->txs])[3] = 'h'; in toshoboe_probe()
1043 mtt = toshoboe_makemttpacket (self, self->tx_bufs[self->txs], mtt); in toshoboe_hard_xmit()
1047 self->ring->tx[self->txs].len = mtt & 0xfff; in toshoboe_hard_xmit()
1060 self->ring->tx[self->txs].control = ctl; in toshoboe_hard_xmit()
1068 self->txs++; in toshoboe_hard_xmit()
1069 self->txs %= TX_SLOTS; in toshoboe_hard_xmit()
1085 if (self->ring->tx[self->txs].control & OBOE_CTL_TX_HW_OWNS) in toshoboe_hard_xmit()
1088 __func__, skb->len, self->ring->tx[self->txs].control, in toshoboe_hard_xmit()
1097 len = async_wrap_skb (skb, self->tx_bufs[self->txs], TX_BUF_SZ); in toshoboe_hard_xmit()
1102 skb_copy_from_linear_data(skb, self->tx_bufs[self->txs], len); in toshoboe_hard_xmit()
1104 self->ring->tx[self->txs].len = len & 0x0fff; in toshoboe_hard_xmit()
1115 self->ring->tx[self->txs].control = ctl; in toshoboe_hard_xmit()
1124 self->txs++; in toshoboe_hard_xmit()
1125 self->txs %= TX_SLOTS; in toshoboe_hard_xmit()