Symbol: txpkts
usr/src/uts/common/io/cxgbe/t4nex/adapter.h
462
uint64_t txpkts; /* # of ethernet packets */
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
946
*val = txq->stats.txpkts;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1108
struct txpkts txpkts = {};
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1111
txpkts.npkt = 0; /* indicates there's nothing in txpkts */
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1163
add_to_txpkts(txq, &txpkts, frame, &txinfo) == 0) {
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1165
write_ulp_cpl_sgl(pi, txq, &txpkts, &txinfo);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1175
ASSERT(txpkts.npkt == 0);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1208
txq->stats.txpkts++;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1214
if (txpkts.npkt > 0) {
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1215
write_txpkts_wr(txq, &txpkts);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
139
static int add_to_txpkts(struct sge_txq *txq, struct txpkts *txpkts, mblk_t *m,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
141
static void write_txpkts_wr(struct sge_txq *txq, struct txpkts *txpkts);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
146
struct txpkts *txpkts, struct txinfo *txinfo);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2737
add_to_txpkts(struct sge_txq *txq, struct txpkts *txpkts, mblk_t *m,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2748
if (txpkts->npkt > 0) {
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2751
txpkts->nflits + flits <= TX_WR_MAX_FLITS &&
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2752
txpkts->nflits + flits <= EQ_HC_TO_FLITS(eq->tse_avail) &&
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2753
txpkts->plen + txinfo->len < 65536;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2756
txpkts->tail->b_next = m;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2757
txpkts->tail = m;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2758
txpkts->npkt++;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2759
txpkts->nflits += flits;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2760
txpkts->plen += txinfo->len;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2781
write_txpkts_wr(txq, txpkts);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2789
ASSERT(txpkts->npkt == 0);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2809
txpkts->tail = m;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2810
txpkts->npkt = 1;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2811
txpkts->nflits = flits;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2812
txpkts->flitp = &hc->flit[2];
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2813
txpkts->plen = txinfo->len;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2849
write_txpkts_wr(struct sge_txq *txq, struct txpkts *txpkts)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2856
const uint16_t ncredits = EQ_FLITS_TO_HC(txpkts->nflits);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2872
wr->equiq_to_len16 = BE_32(V_FW_WR_LEN16(howmany(txpkts->nflits, 2)) |
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2875
wr->plen = BE_16(txpkts->plen);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2876
wr->npkt = txpkts->npkt;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2888
txq->stats.txpkts_pkts += txpkts->npkt;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2890
txpkts->npkt = 0; /* emptied */
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3206
struct txpkts *txpkts, struct txinfo *txinfo)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3211
void *flitp = txpkts->flitp;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3216
ASSERT3U(txpkts->npkt, >, 0);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3298
txpkts->nflits++;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3312
txpkts->flitp = flitp;