Symbol: sge_txq
usr/src/uts/common/io/cxgbe/t4nex/adapter.h
626
struct sge_txq *txq; /* NIC TX queues */
usr/src/uts/common/io/cxgbe/t4nex/adapter.h
916
void t4_mac_tx_update(struct port_info *pi, struct sge_txq *txq);
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
2016
struct sge_txq *txq;
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
2118
t4_mac_tx_update(struct port_info *pi, struct sge_txq *txq)
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
938
struct sge_txq *txq = (struct sge_txq *)rh;
usr/src/uts/common/io/cxgbe/t4nex/t4_mac.c
993
struct sge_txq *txq =
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
1044
kmem_free(s->txq, s->txq_count * sizeof (struct sge_txq));
usr/src/uts/common/io/cxgbe/t4nex/t4_nexus.c
883
kmem_zalloc(sge->txq_count * sizeof (struct sge_txq), KM_SLEEP);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
108
static int t4_alloc_txq(struct port_info *, struct sge_txq *, int);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
109
static void t4_free_txq(struct port_info *, struct sge_txq *);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1103
struct sge_txq *txq = arg;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
130
static int get_frame_txinfo(struct sge_txq *txq, mblk_t **fp,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
132
static inline int fits_in_txb(struct sge_txq *txq, int len, int *waste);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
133
static inline int copy_into_txb(struct sge_txq *txq, mblk_t *m, int len,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
136
static inline int add_mblk(struct sge_txq *txq, struct txinfo *txinfo,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
138
static void free_txinfo_resources(struct sge_txq *txq, struct txinfo *txinfo);
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
142
static int write_txpkt_wr(struct port_info *pi, struct sge_txq *txq, mblk_t *m,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
144
static void t4_write_flush_wr(struct sge_txq *);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
145
static inline void write_ulp_cpl_sgl(struct port_info *pi, struct sge_txq *txq,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
149
static void t4_tx_ring_db(struct sge_txq *);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
150
static uint16_t t4_tx_reclaim_credits(struct sge_txq *, uint16_t, mblk_t **);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
158
static kstat_t *setup_txq_kstats(struct port_info *pi, struct sge_txq *txq,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1831
t4_alloc_txq(struct port_info *pi, struct sge_txq *txq, int idx)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
1884
t4_free_txq(struct port_info *pi, struct sge_txq *txq)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2440
get_frame_txinfo(struct sge_txq *txq, mblk_t **fp, struct txinfo *txinfo,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2560
fits_in_txb(struct sge_txq *txq, int len, int *waste)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2583
copy_into_txb(struct sge_txq *txq, mblk_t *m, int len, struct txinfo *txinfo)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2651
add_mblk(struct sge_txq *txq, struct txinfo *txinfo, mblk_t *m, int len)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
2700
free_txinfo_resources(struct sge_txq *txq, 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
2824
t4_tx_incr_pending(struct sge_txq *txq, uint16_t ncredits)
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
3002
write_txpkt_wr(struct port_info *pi, struct sge_txq *txq, mblk_t *m,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3166
t4_write_flush_wr(struct sge_txq *txq)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3205
write_ulp_cpl_sgl(struct port_info *pi, struct sge_txq *txq,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3345
t4_tx_ring_db(struct sge_txq *txq)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3437
t4_tx_reclaim_credits(struct sge_txq *txq, uint16_t howmany,
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3607
struct sge_txq *txq = (struct sge_txq *)(*t4_eqmap_slot(sc, qid));
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3638
struct sge_txq *, txq, struct cpl_sge_egr_update *, cpl);
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3925
setup_txq_kstats(struct port_info *pi, struct sge_txq *txq, int idx)
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
3975
struct sge_txq *txq = ksp->ks_private;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
456
struct sge_txq *txq;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
495
struct sge_txq *txq;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
534
struct sge_txq *txq;
usr/src/uts/common/io/cxgbe/t4nex/t4_sge.c
568
struct sge_txq *txq;