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