Lines Matching refs:txfifo
165 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */
985 /* create the txfifo */
986 edge_port->txfifo.head = 0;
987 edge_port->txfifo.tail = 0;
988 edge_port->txfifo.count = 0;
989 edge_port->txfifo.size = edge_port->maxTxCredits;
990 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
992 if (!edge_port->txfifo.fifo) {
1084 struct TxFifo *fifo = &edge_port->txfifo;
1177 kfree(edge_port->txfifo.fifo);
1178 edge_port->txfifo.fifo = NULL;
1203 fifo = &edge_port->txfifo;
1288 struct TxFifo *fifo = &edge_port->txfifo;
1420 room = edge_port->txCredits - edge_port->txfifo.count;
1456 edge_port->txfifo.count;
1580 edge_port->txfifo.count == 0) {