Searched refs:txbuf (Results 1 – 7 of 7) sorted by relevance
/linux-2.4.37.9/drivers/net/arcnet/ |
D | arcnet.c | 575 int txbuf; in arcnet_send_packet() local 601 txbuf = get_arcbuf(dev); in arcnet_send_packet() 602 if (txbuf != -1) { in arcnet_send_packet() 603 if (proto->prepare_tx(dev, pkt, skb->len, txbuf)) { in arcnet_send_packet() 615 else if (proto->continue_tx(dev, txbuf)) { in arcnet_send_packet() 622 lp->next_tx = txbuf; in arcnet_send_packet() 818 int txbuf = get_arcbuf(dev); in arcnet_interrupt() local 819 if (txbuf != -1) { in arcnet_interrupt() 820 if (lp->outgoing.proto->continue_tx(dev, txbuf)) { in arcnet_interrupt() 826 lp->next_tx = txbuf; in arcnet_interrupt()
|
/linux-2.4.37.9/include/linux/ |
D | wanpipe.h | 455 void* txbuf; /* -> current Tx buffer */ member 478 void* txbuf; /* -> current Tx buffer */ member 513 void* txbuf; /* -> current Tx buffer */ member
|
/linux-2.4.37.9/drivers/net/wan/ |
D | wanpipe_multppp.c | 1290 CHDLC_DATA_TX_STATUS_EL_STRUCT *txbuf = card->u.c.txbuf; in chdlc_send() local 1292 if (txbuf->opp_flag) in chdlc_send() 1295 sdla_poke(&card->hw, txbuf->ptr_data_bfr, data, len); in chdlc_send() 1297 txbuf->frame_length = len; in chdlc_send() 1298 txbuf->opp_flag = 1; /* start transmission */ in chdlc_send() 1301 card->u.c.txbuf = ++txbuf; in chdlc_send() 1303 if ((void*)txbuf > card->u.c.txbuf_last) in chdlc_send() 1304 card->u.c.txbuf = card->u.c.txbuf_base; in chdlc_send() 2234 card->u.c.txbuf = (void *)(card->hw.dpmbase + in init_chdlc_tx_rx_buff() 2261 card->u.c.txbuf = (void *)(card->hw.dpmbase + in init_chdlc_tx_rx_buff()
|
D | cosa.c | 122 char *txbuf; /* Transmit buffer */ member 168 char *txbuf, *rxbuf; member 916 kfree(chan->txbuf); in chrdev_tx_done() 1262 chan->txbuf = buf; in cosa_start_tx() 1731 cosa->chan[cosa->txchan].txbuf, cosa->txsize)) { in tx_interrupt() 1732 cosa->txbuf = cosa->chan[cosa->txchan].txbuf; in tx_interrupt() 1734 memcpy(cosa->bouncebuf, cosa->chan[cosa->txchan].txbuf, in tx_interrupt() 1736 cosa->txbuf = cosa->bouncebuf; in tx_interrupt() 1782 unsigned long addr = virt_to_bus(cosa->txbuf); in tx_interrupt() 1812 set_dma_addr(cosa->dma, virt_to_bus(cosa->txbuf)); in tx_interrupt()
|
D | sdla_ppp.c | 1649 ppp_buf_ctl_t *txbuf = card->u.p.txbuf; in ppp_send() local 1651 if (txbuf->flag) in ppp_send() 1654 sdla_poke(&card->hw, txbuf->buf.ptr, data, len); in ppp_send() 1656 txbuf->length = len; /* frame length */ in ppp_send() 1659 txbuf->proto = 0x01; /* protocol ID */ in ppp_send() 1661 txbuf->proto = 0x00; /* protocol ID */ in ppp_send() 1663 txbuf->flag = 1; /* start transmission */ in ppp_send() 1666 card->u.p.txbuf = ++txbuf; in ppp_send() 1668 if ((void*)txbuf > card->u.p.txbuf_last) in ppp_send() 1669 card->u.p.txbuf = card->u.p.txbuf_base; in ppp_send() [all …]
|
D | sdla_chdlc.c | 1800 CHDLC_DATA_TX_STATUS_EL_STRUCT *txbuf = card->u.c.txbuf; in chdlc_send() local 1802 if (txbuf->opp_flag) in chdlc_send() 1805 sdla_poke(&card->hw, txbuf->ptr_data_bfr, data, len); in chdlc_send() 1807 txbuf->frame_length = len; in chdlc_send() 1808 txbuf->opp_flag = 1; /* start transmission */ in chdlc_send() 1811 card->u.c.txbuf = ++txbuf; in chdlc_send() 1813 if ((void*)txbuf > card->u.c.txbuf_last) in chdlc_send() 1814 card->u.c.txbuf = card->u.c.txbuf_base; in chdlc_send() 3345 card->u.c.txbuf = (void *)(card->hw.dpmbase + in init_chdlc_tx_rx_buff() 3372 card->u.c.txbuf = (void *)(card->hw.dpmbase + in init_chdlc_tx_rx_buff()
|
/linux-2.4.37.9/drivers/net/ |
D | sunqe.c | 572 unsigned char *txbuf; in qe_start_xmit() local 582 txbuf = &qbufs->tx_buf[entry & (TX_RING_SIZE - 1)][0]; in qe_start_xmit() 589 memcpy(txbuf, skb->data, len); in qe_start_xmit()
|