Lines Matching refs:txfifo
165 struct TxFifo txfifo; /* transmit fifo -- size will be maxTxCredits */
909 /* create the txfifo */
910 edge_port->txfifo.head = 0;
911 edge_port->txfifo.tail = 0;
912 edge_port->txfifo.count = 0;
913 edge_port->txfifo.size = edge_port->maxTxCredits;
914 edge_port->txfifo.fifo = kmalloc(edge_port->maxTxCredits, GFP_KERNEL);
916 if (!edge_port->txfifo.fifo) {
1008 struct TxFifo *fifo = &edge_port->txfifo;
1101 kfree(edge_port->txfifo.fifo);
1102 edge_port->txfifo.fifo = NULL;
1127 fifo = &edge_port->txfifo;
1212 struct TxFifo *fifo = &edge_port->txfifo;
1332 room = edge_port->txCredits - edge_port->txfifo.count;
1355 edge_port->txfifo.count;
1480 edge_port->txfifo.count == 0) {