Lines Matching defs:unack
67 struct sk_buff_head unack; /* Unack'ed packets queue */
177 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen);
179 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
181 while ((skb = __skb_dequeue_tail(&h5->unack)) != NULL) {
186 spin_unlock_irqrestore(&h5->unack.lock, flags);
204 skb_queue_purge(&h5->unack);
231 skb_queue_head_init(&h5->unack);
259 skb_queue_purge(&h5->unack);
292 spin_lock_irqsave(&h5->unack.lock, flags);
294 to_remove = skb_queue_len(&h5->unack);
312 skb_queue_walk_safe(&h5->unack, skb, tmp) {
316 __skb_unlink(skb, &h5->unack);
320 if (skb_queue_empty(&h5->unack))
324 spin_unlock_irqrestore(&h5->unack.lock, flags);
772 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING);
774 if (h5->unack.qlen >= h5->tx_win)
782 __skb_queue_tail(&h5->unack, skb);
784 spin_unlock_irqrestore(&h5->unack.lock, flags);
793 spin_unlock_irqrestore(&h5->unack.lock, flags);