Searched refs:tx_mod (Results 1 – 5 of 5) sorted by relevance
/linux-2.6.39/drivers/net/bna/ |
D | bna_txrx.c | 3135 static void bna_tx_mod_cb_tx_stopped(void *tx_mod, struct bna_tx *tx, 3494 tx->bna->tx_mod.txf_bmap[0] |= ((u32)1 << tx->txf.txf_id); in __bna_txf_start() 3496 tx->bna->tx_mod.txf_bmap[1] |= ((u32) in __bna_txf_start() 3526 tx->bna->tx_mod.txf_bmap[0] &= ~((u32)1 << tx->txf.txf_id); in __bna_txf_stop() 3528 tx->bna->tx_mod.txf_bmap[0] &= ~((u32) in __bna_txf_stop() 3628 struct bna_tx_mod *tx_mod = &tx->bna->tx_mod; in bna_tx_free() local 3645 list_add_tail(&txq->qe, &tx_mod->txq_free_q); in bna_tx_free() 3648 list_for_each(qe, &tx_mod->tx_active_q) { in bna_tx_free() 3658 list_add_tail(&tx->qe, &tx_mod->tx_free_q); in bna_tx_free() 3700 tx->stop_cbarg = &tx->bna->tx_mod; in bna_tx_stop() [all …]
|
D | bna.h | 425 void bna_tx_mod_init(struct bna_tx_mod *tx_mod, struct bna *bna, 427 void bna_tx_mod_uninit(struct bna_tx_mod *tx_mod); 431 void bna_tx_mod_start(struct bna_tx_mod *tx_mod, enum bna_tx_type type); 432 void bna_tx_mod_stop(struct bna_tx_mod *tx_mod, enum bna_tx_type type); 433 void bna_tx_mod_fail(struct bna_tx_mod *tx_mod); 434 void bna_tx_mod_prio_changed(struct bna_tx_mod *tx_mod, int prio); 435 void bna_tx_mod_cee_link_status(struct bna_tx_mod *tx_mod, int cee_link);
|
D | bnad_ethtool.c | 882 bmap = (u64)bnad->bna.tx_mod.txf_bmap[0] | in bnad_get_strings() 883 ((u64)bnad->bna.tx_mod.txf_bmap[1] << 32); in bnad_get_strings() 1039 bmap = (u64)bnad->bna.tx_mod.txf_bmap[0] | in bnad_get_stats_count_locked() 1040 ((u64)bnad->bna.tx_mod.txf_bmap[1] << 32); in bnad_get_stats_count_locked() 1199 bmap = (u64)bnad->bna.tx_mod.txf_bmap[0] | in bnad_get_ethtool_stats() 1200 ((u64)bnad->bna.tx_mod.txf_bmap[1] << 32); in bnad_get_ethtool_stats()
|
D | bna_ctrl.c | 47 bna_tx_mod_cee_link_status(&port->bna->tx_mod, aen->cee_linkup); in bna_port_cb_link_up() 48 bna_tx_mod_prio_changed(&port->bna->tx_mod, port->priority); in bna_port_cb_link_up() 58 bna_tx_mod_cee_link_status(&port->bna->tx_mod, BNA_LINK_DOWN); in bna_port_cb_link_down() 750 bna_tx_mod_start(&(port)->bna->tx_mod, tx_type);\ 764 bna_tx_mod_stop(&(port)->bna->tx_mod, tx_type);\ 771 bna_tx_mod_fail(&(port)->bna->tx_mod);\ 1863 list_for_each(qe, &bna->tx_mod.tx_active_q) { in bna_sw_stats_get() 2050 ll_req.txf_id_mask[0] = htonl(bna->tx_mod.txf_bmap[0]); in bna_fw_stats_get() 2051 ll_req.txf_id_mask[1] = htonl(bna->tx_mod.txf_bmap[1]); in bna_fw_stats_get() 2062 bna->stats.txf_bmap[0] = bna->tx_mod.txf_bmap[0]; in bna_fw_stats_get() [all …]
|
D | bna_types.h | 1109 struct bna_tx_mod tx_mod; member
|