Lines Matching defs:unack
62 struct sk_buff_head unack; /* Unack'ed packets queue */
162 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen);
164 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
166 while ((skb = __skb_dequeue_tail(&h5->unack)) != NULL) {
171 spin_unlock_irqrestore(&h5->unack.lock, flags);
189 skb_queue_purge(&h5->unack);
216 skb_queue_head_init(&h5->unack);
244 skb_queue_purge(&h5->unack);
277 spin_lock_irqsave(&h5->unack.lock, flags);
279 to_remove = skb_queue_len(&h5->unack);
297 skb_queue_walk_safe(&h5->unack, skb, tmp) {
301 __skb_unlink(skb, &h5->unack);
305 if (skb_queue_empty(&h5->unack))
309 spin_unlock_irqrestore(&h5->unack.lock, flags);
743 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
745 if (h5->unack.qlen >= h5->tx_win)
753 __skb_queue_tail(&h5->unack, skb);
755 spin_unlock_irqrestore(&h5->unack.lock, flags);
764 spin_unlock_irqrestore(&h5->unack.lock, flags);