Lines Matching refs:epid_queue

134 	struct sk_buff_head *epid_queue = NULL;  in get_htc_epid_queue()  local
137 epid_queue = &priv->tx.mgmt_ep_queue; in get_htc_epid_queue()
139 epid_queue = &priv->tx.cab_ep_queue; in get_htc_epid_queue()
141 epid_queue = &priv->tx.data_be_queue; in get_htc_epid_queue()
143 epid_queue = &priv->tx.data_bk_queue; in get_htc_epid_queue()
145 epid_queue = &priv->tx.data_vi_queue; in get_htc_epid_queue()
147 epid_queue = &priv->tx.data_vo_queue; in get_htc_epid_queue()
151 return epid_queue; in get_htc_epid_queue()
622 struct sk_buff_head *epid_queue; in ath9k_htc_tx_get_packet() local
627 epid_queue = get_htc_epid_queue(priv, epid); in ath9k_htc_tx_get_packet()
628 if (!epid_queue) in ath9k_htc_tx_get_packet()
631 spin_lock_irqsave(&epid_queue->lock, flags); in ath9k_htc_tx_get_packet()
632 skb_queue_walk_safe(epid_queue, skb, tmp) { in ath9k_htc_tx_get_packet()
634 __skb_unlink(skb, epid_queue); in ath9k_htc_tx_get_packet()
635 spin_unlock_irqrestore(&epid_queue->lock, flags); in ath9k_htc_tx_get_packet()
639 spin_unlock_irqrestore(&epid_queue->lock, flags); in ath9k_htc_tx_get_packet()
695 struct sk_buff_head *epid_queue; in ath9k_htc_txep() local
707 epid_queue = get_htc_epid_queue(priv, ep_id); in ath9k_htc_txep()
708 if (!epid_queue) { in ath9k_htc_txep()
713 skb_queue_tail(epid_queue, skb); in ath9k_htc_txep()
734 struct sk_buff_head *epid_queue) in ath9k_htc_tx_cleanup_queue() argument
743 spin_lock_irqsave(&epid_queue->lock, flags); in ath9k_htc_tx_cleanup_queue()
744 skb_queue_walk_safe(epid_queue, skb, tmp) { in ath9k_htc_tx_cleanup_queue()
746 __skb_unlink(skb, epid_queue); in ath9k_htc_tx_cleanup_queue()
751 spin_unlock_irqrestore(&epid_queue->lock, flags); in ath9k_htc_tx_cleanup_queue()