Symbol: tx_desc
sys/dev/age/if_age.c
1465
struct tx_desc *desc;
sys/dev/age/if_age.c
2210
txd->tx_desc->addr = 0;
sys/dev/age/if_age.c
2211
txd->tx_desc->len = 0;
sys/dev/age/if_age.c
2212
txd->tx_desc->flags = 0;
sys/dev/age/if_age.c
2972
txd->tx_desc = &rd->age_tx_ring[i];
sys/dev/age/if_agevar.h
115
struct tx_desc *age_tx_ring;
sys/dev/age/if_agevar.h
128
(sizeof(struct tx_desc) * AGE_TX_RING_CNT)
sys/dev/age/if_agevar.h
74
struct tx_desc *tx_desc;
sys/dev/alc/if_alc.c
2684
struct tx_desc *desc;
sys/dev/alc/if_alcvar.h
34
#define ALC_TX_RING_ALIGN sizeof(struct tx_desc)
sys/dev/alc/if_alcvar.h
63
(sizeof(struct tx_desc) * ALC_TX_RING_CNT)
sys/dev/alc/if_alcvar.h
96
struct tx_desc *alc_tx_ring;
sys/dev/ale/if_ale.c
1562
struct tx_desc *desc;
sys/dev/ale/if_alevar.h
109
(sizeof(struct tx_desc) * ALE_TX_RING_CNT)
sys/dev/ale/if_alevar.h
93
struct tx_desc *ale_tx_ring;
sys/dev/cadence/if_cgem.c
379
struct cgem_tx_desc *tx_desc;
sys/dev/cadence/if_cgem.c
394
tx_desc = (struct cgem_tx_desc *)(rx_desc + 1);
sys/dev/cadence/if_cgem.c
395
tx_desc->ctl = CGEM_TXDESC_USED | CGEM_TXDESC_WRAP;
sys/dev/cxgb/cxgb_adapter.h
222
struct tx_desc;
sys/dev/cxgb/cxgb_adapter.h
239
struct tx_desc *desc;
sys/dev/cxgb/cxgb_sge.c
1254
wr_gen2(struct tx_desc *d, unsigned int gen)
sys/dev/cxgb/cxgb_sge.c
1279
write_wr_hdr_sgl(unsigned int ndesc, struct tx_desc *txd, struct txq_state *txqs,
sys/dev/cxgb/cxgb_sge.c
1338
wr_gen2((struct tx_desc *)wp, ogen);
sys/dev/cxgb/cxgb_sge.c
1368
struct tx_desc *txd;
sys/dev/cxgb/cxgb_sge.c
1791
write_imm(struct tx_desc *d, caddr_t src,
sys/dev/cxgb/cxgb_sge.c
2202
struct tx_desc *d = &q->desc[pidx];
sys/dev/cxgb/cxgb_sge.c
2471
sizeof(struct tx_desc), sz,
sys/dev/cxgb/cxgb_sge.c
3159
struct tx_desc *txd;
sys/dev/cxgb/cxgb_sge.c
3226
struct tx_desc *txd;
sys/dev/cxgb/cxgb_sge.c
3701
memcpy(data, &qs->txq[qnum].desc[idx], sizeof(struct tx_desc));
sys/dev/cxgb/cxgb_sge.c
3702
return sizeof(struct tx_desc);
sys/dev/cxgbe/adapter.h
509
struct tx_desc *desc; /* KVA of descriptor ring */
sys/dev/cxgbe/adapter.h
879
struct tx_desc *desc;
sys/dev/iser/icl_iser.c
103
tx_desc->mapped = true;
sys/dev/iser/icl_iser.c
104
tx_desc->dma_addr = dma_addr;
sys/dev/iser/icl_iser.c
105
tx_desc->tx_sg[0].addr = tx_desc->dma_addr;
sys/dev/iser/icl_iser.c
106
tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
sys/dev/iser/icl_iser.c
107
tx_desc->tx_sg[0].lkey = device->mr->lkey;
sys/dev/iser/icl_iser.c
487
struct iser_tx_desc *tx_desc = &iser_pdu->desc;
sys/dev/iser/icl_iser.c
503
if (likely(tx_desc->mapped)) {
sys/dev/iser/icl_iser.c
504
ib_dma_unmap_single(device->ib_device, tx_desc->dma_addr,
sys/dev/iser/icl_iser.c
506
tx_desc->mapped = false;
sys/dev/iser/icl_iser.c
91
struct iser_tx_desc *tx_desc = &pdu->desc;
sys/dev/iser/icl_iser.c
96
dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc,
sys/dev/iser/iser_initiator.c
103
struct iser_tx_desc *tx_desc)
sys/dev/iser/iser_initiator.c
108
tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE);
sys/dev/iser/iser_initiator.c
110
memset(&tx_desc->iser_header, 0, sizeof(struct iser_hdr));
sys/dev/iser/iser_initiator.c
111
tx_desc->iser_header.flags = ISER_VER;
sys/dev/iser/iser_initiator.c
113
tx_desc->num_sge = 1;
sys/dev/iser/iser_initiator.c
115
if (tx_desc->tx_sg[0].lkey != device->mr->lkey) {
sys/dev/iser/iser_initiator.c
116
tx_desc->tx_sg[0].lkey = device->mr->lkey;
sys/dev/iser/iser_initiator.c
117
ISER_DBG("sdesc %p lkey mismatch, fixing", tx_desc);
sys/dev/iser/iser_initiator.c
362
struct iser_tx_desc *tx_desc = &iser_pdu->desc;
sys/dev/iser/iser_initiator.c
369
tx_desc->type = ISCSI_TX_SCSI_COMMAND;
sys/dev/iser/iser_initiator.c
370
iser_create_send_desc(iser_conn, tx_desc);
sys/dev/iser/iser_initiator.c
397
err = iser_post_send(&iser_conn->ib_conn, tx_desc,
sys/dev/iser/iser_initiator.c
529
iser_snd_completion(struct iser_tx_desc *tx_desc,
sys/dev/iser/iser_initiator.c
532
struct icl_iser_pdu *iser_pdu = container_of(tx_desc, struct icl_iser_pdu, desc);
sys/dev/iser/iser_initiator.c
535
if (tx_desc && tx_desc->type == ISCSI_TX_CONTROL)
sys/dev/iser/iser_verbs.c
118
struct iser_tx_desc *tx_desc;
sys/dev/iser/iser_verbs.c
129
tx_desc = (struct iser_tx_desc *)(uintptr_t)wc->wr_id;
sys/dev/iser/iser_verbs.c
130
iser_snd_completion(tx_desc, ib_conn);
sys/dev/iser/iser_verbs.c
914
int iser_post_send(struct ib_conn *ib_conn, struct iser_tx_desc *tx_desc,
sys/dev/iser/iser_verbs.c
922
tx_desc->dma_addr, ISER_HEADERS_LEN,
sys/dev/iser/iser_verbs.c
926
send_wr.wr_id = (uintptr_t)tx_desc;
sys/dev/iser/iser_verbs.c
927
send_wr.sg_list = tx_desc->tx_sg;
sys/dev/iser/iser_verbs.c
928
send_wr.num_sge = tx_desc->num_sge;
sys/dev/jme/if_jme.c
1816
desc = txd->tx_desc;
sys/dev/jme/if_jme.c
2410
status = le32toh(txd->tx_desc->flags);
sys/dev/jme/if_jme.c
2420
le32toh(txd->tx_desc->buflen) &
sys/dev/jme/if_jme.c
3089
txd->tx_desc = &rd->jme_tx_ring[i];
sys/dev/jme/if_jmevar.h
103
struct jme_desc *tx_desc;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
275
struct mlx4_en_tx_desc *tx_desc = (struct mlx4_en_tx_desc *)
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
277
volatile __be32 *ptr = (__be32 *)tx_desc;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
641
volatile struct mlx4_en_tx_desc *tx_desc;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
685
tx_desc = (volatile struct mlx4_en_tx_desc *)
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
688
dseg = &tx_desc->data;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
695
tx_desc->ctrl.srcrb_flags = CTRL_FLAGS;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
698
tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_IP_CSUM);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
702
tx_desc->ctrl.srcrb_flags |= cpu_to_be32(MLX4_WQE_CTRL_TCP_UDP_CSUM);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
705
if (likely(tx_desc->ctrl.srcrb_flags != CTRL_FLAGS)) {
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
712
tx_desc->ctrl.vlan_tag = cpu_to_be16(mb->m_pkthdr.ether_vtag);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
713
tx_desc->ctrl.ins_vlan = MLX4_WQE_CTRL_INS_CVLAN;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
715
tx_desc->ctrl.vlan_tag = 0;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
716
tx_desc->ctrl.ins_vlan = 0;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
725
m_copydata(mb, 0, 2, __DEVOLATILE(void *, &tx_desc->ctrl.srcrb_flags16[0]));
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
726
m_copydata(mb, 2, 4, __DEVOLATILE(void *, &tx_desc->ctrl.imm));
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
729
tx_desc->ctrl.imm = 0;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
746
tx_desc->lso.mss_hdr_size = cpu_to_be32((mss << 16) | ihs);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
808
ds_cnt = (dseg - ((volatile struct mlx4_wqe_data_seg *)tx_desc)) + nr_segs;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
842
tx_desc->ctrl.fence_size = (ds_cnt & 0x3f);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
891
(tx_desc->ctrl.ins_vlan != MLX4_WQE_CTRL_INS_CVLAN)) {
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
894
*(volatile __be32 *) (&tx_desc->ctrl.vlan_tag) |= cpu_to_be32(ring->doorbell_qpn);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
904
tx_desc->ctrl.owner_opcode = opcode;
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
907
(volatile unsigned long *) &tx_desc->ctrl, bf_size);
sys/dev/mlx4/mlx4_en/mlx4_en_tx.c
916
tx_desc->ctrl.owner_opcode = opcode;
sys/dev/netmap/netmap_kern.h
1827
tx_desc->buffer_addr = htole64(buffer_info->dma); //XXX
sys/dev/qlxge/qls_hw.c
669
q81_txb_desc_t *tx_desc;
sys/dev/qlxge/qls_hw.c
745
tx_desc = ha->tx_ring[txr_idx].tx_buf[txr_next].oal_vaddr;
sys/dev/qlxge/qls_hw.c
748
tx_desc->baddr = segs->ds_addr;
sys/dev/qlxge/qls_hw.c
749
tx_desc->length = segs->ds_len;
sys/dev/qlxge/qls_hw.c
752
tx_desc->flags = Q81_RXB_DESC_FLAGS_E;
sys/dev/qlxge/qls_hw.c
754
tx_desc->flags = 0;
sys/dev/qlxge/qls_hw.c
757
tx_desc++;
sys/dev/rtwn/pci/rtwn_pci_attach.c
306
void *tx_desc = (uint8_t *)tx_ring->desc + sc->txdesc_len * i;
sys/dev/rtwn/pci/rtwn_pci_attach.c
310
rtwn_pci_setup_tx_desc(pc, tx_desc, next_desc_addr);
sys/dev/rtwn/pci/rtwn_pci_tx.c
131
rtwn_pci_copy_tx_desc(pc, txd, tx_desc);
sys/dev/rtwn/pci/rtwn_pci_tx.c
198
uint8_t *tx_desc, int id)
sys/dev/rtwn/pci/rtwn_pci_tx.c
223
rtwn_pci_copy_tx_desc(pc, txd, tx_desc);
sys/dev/rtwn/pci/rtwn_pci_tx.c
257
struct mbuf *m, uint8_t *tx_desc, uint8_t type, int id)
sys/dev/rtwn/pci/rtwn_pci_tx.c
264
error = rtwn_pci_tx_start_beacon(sc, m, tx_desc, id);
sys/dev/rtwn/pci/rtwn_pci_tx.c
266
error = rtwn_pci_tx_start_frame(sc, ni, m, tx_desc, type);
sys/dev/rtwn/pci/rtwn_pci_tx.c
91
struct mbuf *m, uint8_t *tx_desc, uint8_t type)
sys/dev/rtwn/usb/rtwn_usb_tx.c
278
struct mbuf *m, uint8_t *tx_desc, uint8_t type, int id)
sys/dev/rtwn/usb/rtwn_usb_tx.c
314
txd = (struct rtwn_tx_desc_common *)tx_desc;
sys/dev/rtwn/usb/rtwn_usb_tx.c
321
rtwn_dump_tx_desc(sc, tx_desc);
sys/dev/rtwn/usb/rtwn_usb_tx.c
323
memcpy(data->buf, tx_desc, sc->txdesc_len);
sys/dev/tsec/if_tsec.c
1447
struct tsec_desc *tx_desc;
sys/dev/tsec/if_tsec.c
1450
tx_desc = &sc->tsec_tx_vaddr[tx_idx];
sys/dev/tsec/if_tsec.c
1451
if (tx_desc->flags & TSEC_TXBD_R) {
sys/dev/tsec/if_tsec.c
369
struct tsec_desc *tx_desc = sc->tsec_tx_vaddr;
sys/dev/tsec/if_tsec.c
495
tx_desc[i].bufptr = 0;
sys/dev/tsec/if_tsec.c
496
tx_desc[i].length = 0;
sys/dev/tsec/if_tsec.c
497
tx_desc[i].flags = ((i == TSEC_TX_NUM_DESC - 1) ?
sys/dev/tsec/if_tsec.c
831
struct tsec_desc *tx_desc;
sys/dev/tsec/if_tsec.c
834
tx_desc = &sc->tsec_tx_vaddr[tx_idx];
sys/dev/tsec/if_tsec.c
835
tx_desc->length = segs[i].ds_len;
sys/dev/tsec/if_tsec.c
836
tx_desc->bufptr = segs[i].ds_addr;
sys/dev/tsec/if_tsec.c
853
tx_desc->flags = (tx_idx == (TSEC_TX_NUM_DESC - 1) ?
sys/dev/vge/if_vge.c
1314
txd->tx_desc = &rd->vge_tx_ring[i];
sys/dev/vge/if_vge.c
1638
txd->tx_desc->vge_frag[0].vge_addrhi = 0;
sys/dev/vge/if_vge.c
1887
txd->tx_desc->vge_sts = htole32(m->m_pkthdr.len << 16);
sys/dev/vge/if_vge.c
1903
txd->tx_desc->vge_ctl = htole32(cflags | ((nsegs + 1) << 28) |
sys/dev/vge/if_vge.c
1906
frag = &txd->tx_desc->vge_frag[i];
sys/dev/vge/if_vge.c
1919
txd->tx_desc->vge_ctl |= htole32(VGE_TDCTL_TIC);
sys/dev/vge/if_vge.c
1920
txd->tx_desc->vge_sts |= htole32(VGE_TDSTS_OWN);
sys/dev/vge/if_vge.c
1979
txd->tx_desc->vge_frag[0].vge_addrhi |= htole32(VGE_TXDESC_Q);
sys/dev/vge/if_vgevar.h
91
struct vge_tx_desc *tx_desc;
sys/dev/vte/if_vte.c
1074
txd->tx_desc->dtlen = htole16(VTE_TX_LEN(txsegs[0].ds_len));
sys/dev/vte/if_vte.c
1075
txd->tx_desc->dtbp = htole32(txsegs[0].ds_addr);
sys/dev/vte/if_vte.c
1081
txd->tx_desc->dtst = htole16(VTE_DTST_TX_OWN);
sys/dev/vte/if_vte.c
1394
status = le16toh(txd->tx_desc->dtst);
sys/dev/vte/if_vte.c
1908
txd->tx_desc = desc;
sys/dev/vte/if_vtevar.h
66
struct vte_tx_desc *tx_desc;