• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/

Lines Matching refs:put_tx

805 	union ring_type get_tx, put_tx, first_tx, last_tx;
1846 np->get_tx = np->put_tx = np->first_tx = np->tx_ring;
2108 struct ring_desc* put_tx;
2130 start_tx = put_tx = np->put_tx.orig;
2134 prev_tx = put_tx;
2141 put_tx->buf = cpu_to_le32(np->put_tx_ctx->dma);
2142 put_tx->flaglen = cpu_to_le32((bcnt-1) | tx_flags);
2147 if (unlikely(put_tx++ == np->last_tx.orig))
2148 put_tx = np->first_tx.orig;
2160 prev_tx = put_tx;
2167 put_tx->buf = cpu_to_le32(np->put_tx_ctx->dma);
2168 put_tx->flaglen = cpu_to_le32((bcnt-1) | tx_flags);
2172 if (unlikely(put_tx++ == np->last_tx.orig))
2173 put_tx = np->first_tx.orig;
2195 np->put_tx.orig = put_tx;
2228 struct ring_desc_ex* put_tx;
2251 start_tx = put_tx = np->put_tx.ex;
2256 prev_tx = put_tx;
2263 put_tx->bufhigh = cpu_to_le32(dma_high(np->put_tx_ctx->dma));
2264 put_tx->buflow = cpu_to_le32(dma_low(np->put_tx_ctx->dma));
2265 put_tx->flaglen = cpu_to_le32((bcnt-1) | tx_flags);
2270 if (unlikely(put_tx++ == np->last_tx.ex))
2271 put_tx = np->first_tx.ex;
2283 prev_tx = put_tx;
2290 put_tx->bufhigh = cpu_to_le32(dma_high(np->put_tx_ctx->dma));
2291 put_tx->buflow = cpu_to_le32(dma_low(np->put_tx_ctx->dma));
2292 put_tx->flaglen = cpu_to_le32((bcnt-1) | tx_flags);
2296 if (unlikely(put_tx++ == np->last_tx.ex))
2297 put_tx = np->first_tx.ex;
2349 np->put_tx.ex = put_tx;
2399 while ((np->get_tx.orig != np->put_tx.orig) &&
2464 while ((np->get_tx.ex != np->put_tx.ex) &&
2514 union ring_type put_tx;
2586 put_tx.ex = np->tx_change_owner->first_tx_desc;
2588 put_tx = np->put_tx;
2595 np->get_tx = np->put_tx = put_tx;