/linux-2.6.39/drivers/net/wireless/ath/ath9k/ |
D | mac.c | 21 struct ath9k_tx_queue_info *qi) in ath9k_hw_set_txq_interrupts() argument 213 struct ath9k_tx_queue_info *qi; in ath9k_hw_set_txq_props() local 221 qi = &ah->txq[q]; in ath9k_hw_set_txq_props() 222 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) { in ath9k_hw_set_txq_props() 230 qi->tqi_ver = qinfo->tqi_ver; in ath9k_hw_set_txq_props() 231 qi->tqi_subtype = qinfo->tqi_subtype; in ath9k_hw_set_txq_props() 232 qi->tqi_qflags = qinfo->tqi_qflags; in ath9k_hw_set_txq_props() 233 qi->tqi_priority = qinfo->tqi_priority; in ath9k_hw_set_txq_props() 235 qi->tqi_aifs = min(qinfo->tqi_aifs, 255U); in ath9k_hw_set_txq_props() 237 qi->tqi_aifs = INIT_AIFS; in ath9k_hw_set_txq_props() [all …]
|
D | htc_drv_txrx.c | 31 qi.tqi_subtype = subtype_txq_to_hwq[subtype]; \ 32 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; \ 33 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; \ 34 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; \ 35 qi.tqi_physCompBuf = 0; \ 36 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | \ 61 struct ath9k_tx_queue_info qi; in ath_htc_txq_update() local 63 ath9k_hw_get_txq_props(ah, qnum, &qi); in ath_htc_txq_update() 65 qi.tqi_aifs = qinfo->tqi_aifs; in ath_htc_txq_update() 66 qi.tqi_cwmin = qinfo->tqi_cwmin / 2; /* XXX */ in ath_htc_txq_update() [all …]
|
D | htc_drv_beacon.c | 286 struct ath9k_tx_queue_info qi, qi_be; in ath9k_htc_beaconq_config() local 289 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); in ath9k_htc_beaconq_config() 294 qi.tqi_aifs = qi_be.tqi_aifs; in ath9k_htc_beaconq_config() 300 qi.tqi_cwmin = 2*qi_be.tqi_cwmin; in ath9k_htc_beaconq_config() 302 qi.tqi_cwmin = 4*qi_be.tqi_cwmin; in ath9k_htc_beaconq_config() 303 qi.tqi_cwmax = qi_be.tqi_cwmax; in ath9k_htc_beaconq_config() 305 if (!ath9k_hw_set_txq_props(ah, priv->beaconq, &qi)) { in ath9k_htc_beaconq_config()
|
D | beacon.c | 30 struct ath9k_tx_queue_info qi, qi_be; in ath_beaconq_config() local 33 ath9k_hw_get_txq_props(ah, sc->beacon.beaconq, &qi); in ath_beaconq_config() 36 qi.tqi_aifs = 1; in ath_beaconq_config() 37 qi.tqi_cwmin = 0; in ath_beaconq_config() 38 qi.tqi_cwmax = 0; in ath_beaconq_config() 43 qi.tqi_aifs = qi_be.tqi_aifs; in ath_beaconq_config() 44 qi.tqi_cwmin = 4*qi_be.tqi_cwmin; in ath_beaconq_config() 45 qi.tqi_cwmax = qi_be.tqi_cwmax; in ath_beaconq_config() 48 if (!ath9k_hw_set_txq_props(ah, sc->beacon.beaconq, &qi)) { in ath_beaconq_config()
|
D | xmit.c | 941 struct ath9k_tx_queue_info qi; in ath_txq_setup() local 950 memset(&qi, 0, sizeof(qi)); in ath_txq_setup() 951 qi.tqi_subtype = subtype_txq_to_hwq[subtype]; in ath_txq_setup() 952 qi.tqi_aifs = ATH9K_TXQ_USEDEFAULT; in ath_txq_setup() 953 qi.tqi_cwmin = ATH9K_TXQ_USEDEFAULT; in ath_txq_setup() 954 qi.tqi_cwmax = ATH9K_TXQ_USEDEFAULT; in ath_txq_setup() 955 qi.tqi_physCompBuf = 0; in ath_txq_setup() 973 qi.tqi_qflags = TXQ_FLAG_TXOKINT_ENABLE | in ath_txq_setup() 977 qi.tqi_qflags = TXQ_FLAG_TXDESCINT_ENABLE; in ath_txq_setup() 979 qi.tqi_qflags = TXQ_FLAG_TXEOLINT_ENABLE | in ath_txq_setup() [all …]
|
D | htc_drv_main.c | 1512 struct ath9k_tx_queue_info qi; in ath9k_htc_conf_tx() local 1521 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); in ath9k_htc_conf_tx() 1523 qi.tqi_aifs = params->aifs; in ath9k_htc_conf_tx() 1524 qi.tqi_cwmin = params->cw_min; in ath9k_htc_conf_tx() 1525 qi.tqi_cwmax = params->cw_max; in ath9k_htc_conf_tx() 1526 qi.tqi_burstTime = params->txop; in ath9k_htc_conf_tx() 1535 ret = ath_htc_txq_update(priv, qnum, &qi); in ath9k_htc_conf_tx()
|
D | main.c | 1808 struct ath9k_tx_queue_info qi; in ath9k_conf_tx() local 1819 memset(&qi, 0, sizeof(struct ath9k_tx_queue_info)); in ath9k_conf_tx() 1821 qi.tqi_aifs = params->aifs; in ath9k_conf_tx() 1822 qi.tqi_cwmin = params->cw_min; in ath9k_conf_tx() 1823 qi.tqi_cwmax = params->cw_max; in ath9k_conf_tx() 1824 qi.tqi_burstTime = params->txop; in ath9k_conf_tx() 1831 ret = ath_txq_update(sc, txq->axq_qnum, &qi); in ath9k_conf_tx()
|
/linux-2.6.39/drivers/pci/ |
D | dmar.c | 837 static inline void reclaim_free_desc(struct q_inval *qi) in reclaim_free_desc() argument 839 while (qi->desc_status[qi->free_tail] == QI_DONE || in reclaim_free_desc() 840 qi->desc_status[qi->free_tail] == QI_ABORT) { in reclaim_free_desc() 841 qi->desc_status[qi->free_tail] = QI_FREE; in reclaim_free_desc() 842 qi->free_tail = (qi->free_tail + 1) % QI_LENGTH; in reclaim_free_desc() 843 qi->free_cnt++; in reclaim_free_desc() 851 struct q_inval *qi = iommu->qi; in qi_check_fault() local 854 if (qi->desc_status[wait_index] == QI_ABORT) in qi_check_fault() 869 (unsigned long long)qi->desc[index].low, in qi_check_fault() 870 (unsigned long long)qi->desc[index].high); in qi_check_fault() [all …]
|
D | intr_remapping.c | 542 if (iommu->qi) in enable_intr_remapping() 772 if (iommu->qi) in reenable_intr_remapping()
|
D | intel-iommu.c | 1002 if (!iommu->qi) in iommu_support_dev_iotlb() 2297 if (iommu->qi) in init_dmars() 3117 if (iommu->qi) in init_iommu_hw()
|
/linux-2.6.39/drivers/net/wireless/ath/ath5k/ |
D | qcu.c | 106 struct ath5k_txq_info *qi; in ath5k_hw_set_tx_queueprops() local 110 qi = &ah->ah_txq[queue]; in ath5k_hw_set_tx_queueprops() 112 if (qi->tqi_type == AR5K_TX_QUEUE_INACTIVE) in ath5k_hw_set_tx_queueprops() 116 qi->tqi_type = qinfo->tqi_type; in ath5k_hw_set_tx_queueprops() 117 qi->tqi_subtype = qinfo->tqi_subtype; in ath5k_hw_set_tx_queueprops() 118 qi->tqi_flags = qinfo->tqi_flags; in ath5k_hw_set_tx_queueprops() 124 qi->tqi_aifs = min(qinfo->tqi_aifs, (u8)0xFC); in ath5k_hw_set_tx_queueprops() 125 qi->tqi_cw_min = ath5k_cw_validate(qinfo->tqi_cw_min); in ath5k_hw_set_tx_queueprops() 126 qi->tqi_cw_max = ath5k_cw_validate(qinfo->tqi_cw_max); in ath5k_hw_set_tx_queueprops() 127 qi->tqi_cbr_period = qinfo->tqi_cbr_period; in ath5k_hw_set_tx_queueprops() [all …]
|
D | mac80211-ops.c | 583 struct ath5k_txq_info qi; in ath5k_conf_tx() local 591 ath5k_hw_get_tx_queueprops(ah, queue, &qi); in ath5k_conf_tx() 593 qi.tqi_aifs = params->aifs; in ath5k_conf_tx() 594 qi.tqi_cw_min = params->cw_min; in ath5k_conf_tx() 595 qi.tqi_cw_max = params->cw_max; in ath5k_conf_tx() 596 qi.tqi_burst_time = params->txop; in ath5k_conf_tx() 604 if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) { in ath5k_conf_tx()
|
D | base.c | 900 struct ath5k_txq_info qi = { in ath5k_txq_setup() local 922 qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE | in ath5k_txq_setup() 924 qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi); in ath5k_txq_setup() 956 struct ath5k_txq_info qi = { in ath5k_beaconq_setup() local 966 return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi); in ath5k_beaconq_setup() 973 struct ath5k_txq_info qi; in ath5k_beaconq_config() local 976 ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi); in ath5k_beaconq_config() 986 qi.tqi_aifs = 0; in ath5k_beaconq_config() 987 qi.tqi_cw_min = 0; in ath5k_beaconq_config() 988 qi.tqi_cw_max = 0; in ath5k_beaconq_config() [all …]
|
/linux-2.6.39/sound/soc/jz4740/ |
D | Makefile | 11 snd-soc-qi-lb60-objs := qi_lb60.o 13 obj-$(CONFIG_SND_JZ4740_SOC_QI_LB60) += snd-soc-qi-lb60.o
|
/linux-2.6.39/drivers/staging/brcm80211/brcmsmac/ |
D | wlc_main.c | 271 struct wlc_txq_info *qi); 273 struct wlc_txq_info *qi, 1730 struct wlc_txq_info *qi; in wlc_attach() local 1930 qi = wlc_txq_alloc(wlc); in wlc_attach() 1931 if (qi == NULL) { in wlc_attach() 1937 wlc->active_queue = qi; in wlc_attach() 2674 struct wlc_txq_info *qi; in wlc_down() local 2721 for (qi = wlc->tx_queues; qi != NULL; qi = qi->next) { in wlc_down() 2722 pktq_flush(&qi->q, true, NULL, 0); in wlc_down() 2723 ASSERT(pktq_empty(&qi->q)); in wlc_down() [all …]
|
D | wlc_ampdu.h | 22 extern int wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info *qi,
|
D | wlc_main.h | 372 struct wlc_txq_info *qi; /* pointer to associated tx queue */ member 856 extern void wlc_txflowcontrol(struct wlc_info *wlc, struct wlc_txq_info *qi, 859 struct wlc_txq_info *qi, 862 struct wlc_txq_info *qi, int prio); 863 extern void wlc_send_q(struct wlc_info *wlc, struct wlc_txq_info *qi);
|
D | wlc_ampdu.c | 491 wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info *qi, in wlc_sendampdu() argument 543 qlen = pktq_plen(&qi->q, prec); in wlc_sendampdu() 743 p = pktq_ppeek(&qi->q, prec); in wlc_sendampdu() 769 p = pktq_pdeq(&qi->q, prec); in wlc_sendampdu() 1409 struct wlc_txq_info *qi = wlc->active_queue; in wlc_ampdu_flush() local 1410 struct pktq *pq = &qi->q; in wlc_ampdu_flush()
|
/linux-2.6.39/fs/xfs/quota/ |
D | xfs_qm.c | 1142 xfs_quotainfo_t *qi; in xfs_qm_destroy_quotainfo() local 1144 qi = mp->m_quotainfo; in xfs_qm_destroy_quotainfo() 1145 ASSERT(qi != NULL); in xfs_qm_destroy_quotainfo() 1155 ASSERT(list_empty(&qi->qi_dqlist)); in xfs_qm_destroy_quotainfo() 1156 mutex_destroy(&qi->qi_dqlist_lock); in xfs_qm_destroy_quotainfo() 1158 if (qi->qi_uquotaip) { in xfs_qm_destroy_quotainfo() 1159 IRELE(qi->qi_uquotaip); in xfs_qm_destroy_quotainfo() 1160 qi->qi_uquotaip = NULL; /* paranoia */ in xfs_qm_destroy_quotainfo() 1162 if (qi->qi_gquotaip) { in xfs_qm_destroy_quotainfo() 1163 IRELE(qi->qi_gquotaip); in xfs_qm_destroy_quotainfo() [all …]
|
/linux-2.6.39/drivers/net/wireless/ath/carl9170/ |
D | debug.c | 385 #define DEBUGFS_QUEUE_DUMP(q, qi) \ argument 386 static char *carl9170_debugfs_##q ##_##qi ##_read(struct ar9170 *ar, \ 389 carl9170_debugfs_queue_dump(ar, buf, len, bufsize, &ar->q[qi]); \ 392 DEBUGFS_DECLARE_RO_FILE(q##_##qi, 8000);
|
/linux-2.6.39/include/linux/ |
D | intel-iommu.h | 329 struct q_inval *qi; /* Queued invalidation info */ member
|