Symbol: tx_ring_desc
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2610
struct tx_ring_desc *tx_ring_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2614
tx_ring_desc = tx_ring->wq_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2615
tx_ring_desc += mac_rsp->tid;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2617
if (tx_ring_desc->tx_type == USE_DMA) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2625
for (j = 0; j < tx_ring_desc->tx_dma_handle_used; j++) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2627
tx_ring_desc->tx_dma_handle[j]);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2630
tx_ring_desc->tx_dma_handle_used = 0;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2634
if (tx_ring_desc->mp != NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2635
freemsg(tx_ring_desc->mp);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2636
tx_ring_desc->mp = NULL;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
2640
tx_ring->obytes += tx_ring_desc->tx_bytes;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3307
struct tx_ring_desc *tx_ring_desc = tx_ring->wq_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3310
tx_ring_desc->index = i;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3311
tx_ring_desc->queue_entry = mac_iocb_ptr;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3313
tx_ring_desc++;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3325
struct tx_ring_desc *tx_ring_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3334
tx_ring_desc = tx_ring->wq_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3335
for (i = 0; i < tx_ring->wq_len; i++, tx_ring_desc++) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3337
if (tx_ring_desc->tx_dma_handle[j]) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3344
&(tx_ring_desc->tx_dma_handle[j]));
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3345
tx_ring_desc->tx_dma_handle[j] = NULL;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3348
if (tx_ring_desc->oal != NULL) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3349
tx_ring_desc->oal_dma_addr = 0;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3350
tx_ring_desc->oal = NULL;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3351
tx_ring_desc->copy_buffer = NULL;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3352
tx_ring_desc->copy_buffer_dma_addr = 0;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3354
ql_free_phys(&tx_ring_desc->oal_dma.dma_handle,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3355
&tx_ring_desc->oal_dma.acc_handle);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3359
tx_ring->wq_len * sizeof (struct tx_ring_desc));
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3378
struct tx_ring_desc *tx_ring_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3399
kmem_zalloc(tx_ring->wq_len * sizeof (struct tx_ring_desc),
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3404
tx_ring_desc = tx_ring->wq_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3412
for (i = 0; i < tx_ring->wq_len; i++, tx_ring_desc++) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3415
&tx_ring_desc->oal_dma.dma_handle,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3418
&tx_ring_desc->oal_dma.acc_handle,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3421
(caddr_t *)&tx_ring_desc->oal_dma.vaddr,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3423
bzero(&tx_ring_desc->oal_dma,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3424
sizeof (tx_ring_desc->oal_dma));
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3431
tx_ring_desc->oal = tx_ring_desc->oal_dma.vaddr;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3432
tx_ring_desc->oal_dma_addr = dma_cookie.dmac_laddress;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3433
tx_ring_desc->copy_buffer =
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3434
(caddr_t)((uint8_t *)tx_ring_desc->oal
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3436
tx_ring_desc->copy_buffer_dma_addr =
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3437
(tx_ring_desc->oal_dma_addr
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3445
0, &tx_ring_desc->tx_dma_handle[j])
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3447
tx_ring_desc->tx_dma_handle[j] = NULL;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3453
&tx_ring_desc->oal_dma.dma_handle,
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
3454
&tx_ring_desc->oal_dma.acc_handle);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
5306
struct tx_ring_desc *tx_cb;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7691
struct tx_ring_desc *tx_ring_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7695
tx_ring_desc = tx_ring->wq_desc;
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7696
for (i = 0; i < tx_ring->wq_len; i++, tx_ring_desc++) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7697
for (j = 0; j < tx_ring_desc->tx_dma_handle_used; j++) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7698
if (tx_ring_desc->tx_dma_handle[j]) {
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7700
tx_ring_desc->tx_dma_handle[j]);
usr/src/uts/common/io/fibre-channel/fca/qlge/qlge.c
7703
tx_ring_desc->tx_dma_handle_used = 0;
usr/src/uts/common/sys/fibre-channel/fca/qlge/qlge.h
460
struct tx_ring_desc *wq_desc;