Home
last modified time | relevance | path

Searched refs:txq_timer (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dutils.c753 struct iwl_fw_dbg_trigger_txq_timer *txq_timer; in iwl_mvm_event_frame_timeout_callback()
771 txq_timer = (void *)trigger->data; in iwl_mvm_tcm_load()
774 return le32_to_cpu(txq_timer->tdls); in iwl_mvm_tcm_load()
777 return le32_to_cpu(txq_timer->command_queue); in iwl_mvm_tcm_load()
784 return le32_to_cpu(txq_timer->ibss); in iwl_mvm_tcm_iter()
786 return le32_to_cpu(txq_timer->bss); in iwl_mvm_tcm_iter()
788 return le32_to_cpu(txq_timer->softap); in iwl_mvm_tcm_iter()
790 return le32_to_cpu(txq_timer->p2p_client); in iwl_mvm_tcm_iter()
792 return le32_to_cpu(txq_timer->p2p_go); in iwl_mvm_tcm_iter()
794 return le32_to_cpu(txq_timer in iwl_mvm_tcm_iter()
663 struct iwl_fw_dbg_trigger_txq_timer *txq_timer; iwl_mvm_get_wd_timeout() local
[all...]
/freebsd/sys/dev/cxgb/
H A Dcxgb_sge.c1683 if (!TXQ_RING_EMPTY(qs) && callout_pending(&txq->txq_timer) == 0 && in cxgb_start_locked()
1685 callout_reset_on(&txq->txq_timer, 1, cxgb_tx_timeout, in cxgb_start_locked()
1686 qs, txq->txq_timer.c_cpu); in cxgb_start_locked()
1733 else if (!TXQ_RING_EMPTY(qs) && !callout_pending(&txq->txq_timer)) in cxgb_transmit_locked()
1734 callout_reset_on(&txq->txq_timer, 1, cxgb_tx_timeout, in cxgb_transmit_locked()
1735 qs, txq->txq_timer.c_cpu); in cxgb_transmit_locked()
2430 callout_init(&q->txq[TXQ_ETH].txq_timer, 1); in t3_sge_alloc_qset()
2432 q->txq[TXQ_ETH].txq_timer.c_cpu = id % mp_ncpus; in t3_sge_alloc_qset()
H A Dcxgb_adapter.h255 struct callout txq_timer; member
H A Dcxgb_main.c1102 callout_drain(&txq->txq_timer); in cxgb_port_detach()