• Home
  • Raw
  • Download

Lines Matching refs:txs

522   self->txs = inb_p (OBOE_TXSLOT) & OBOE_SLOT_MASK;  in toshoboe_resetptrs()
854 self->ring->tx[self->txs].control = in toshoboe_probe()
859 self->ring->tx[self->txs].len = in toshoboe_probe()
860 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
861 self->txs++; in toshoboe_probe()
862 self->txs %= TX_SLOTS; in toshoboe_probe()
864 self->ring->tx[self->txs].control = in toshoboe_probe()
867 self->ring->tx[self->txs].len = in toshoboe_probe()
868 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
869 self->txs++; in toshoboe_probe()
870 self->txs %= TX_SLOTS; in toshoboe_probe()
872 self->ring->tx[self->txs].control = in toshoboe_probe()
875 self->ring->tx[self->txs].len = in toshoboe_probe()
876 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
877 self->txs++; in toshoboe_probe()
878 self->txs %= TX_SLOTS; in toshoboe_probe()
880 self->ring->tx[self->txs].control = in toshoboe_probe()
884 self->ring->tx[self->txs].len = in toshoboe_probe()
885 toshoboe_maketestpacket (self->tx_bufs[self->txs], 0, fir); in toshoboe_probe()
886 self->txs++; in toshoboe_probe()
887 self->txs %= TX_SLOTS; in toshoboe_probe()
927 self->ring->tx[self->txs].control = in toshoboe_probe()
929 self->ring->tx[self->txs].len = 4; in toshoboe_probe()
931 ((unsigned char *) self->tx_bufs[self->txs])[0] = 'f'; in toshoboe_probe()
932 ((unsigned char *) self->tx_bufs[self->txs])[1] = 'i'; in toshoboe_probe()
933 ((unsigned char *) self->tx_bufs[self->txs])[2] = 's'; in toshoboe_probe()
934 ((unsigned char *) self->tx_bufs[self->txs])[3] = 'h'; in toshoboe_probe()
1057 mtt = toshoboe_makemttpacket (self, self->tx_bufs[self->txs], mtt); in toshoboe_hard_xmit()
1062 self->ring->tx[self->txs].len = mtt & 0xfff; in toshoboe_hard_xmit()
1075 self->ring->tx[self->txs].control = ctl; in toshoboe_hard_xmit()
1083 self->txs++; in toshoboe_hard_xmit()
1084 self->txs %= TX_SLOTS; in toshoboe_hard_xmit()
1100 if (self->ring->tx[self->txs].control & OBOE_CTL_TX_HW_OWNS) in toshoboe_hard_xmit()
1103 ,skb->len, self->ring->tx[self->txs].control, self->txpending); in toshoboe_hard_xmit()
1111 len = async_wrap_skb (skb, self->tx_bufs[self->txs], TX_BUF_SZ); in toshoboe_hard_xmit()
1116 skb_copy_from_linear_data(skb, self->tx_bufs[self->txs], len); in toshoboe_hard_xmit()
1118 self->ring->tx[self->txs].len = len & 0x0fff; in toshoboe_hard_xmit()
1129 self->ring->tx[self->txs].control = ctl; in toshoboe_hard_xmit()
1138 self->txs++; in toshoboe_hard_xmit()
1139 self->txs %= TX_SLOTS; in toshoboe_hard_xmit()