Lines Matching refs:unack
76 struct sk_buff_head unack; /* Unack'ed packets queue */ member
174 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen); in h5_timed_event()
176 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING); in h5_timed_event()
178 while ((skb = __skb_dequeue_tail(&h5->unack)) != NULL) { in h5_timed_event()
183 spin_unlock_irqrestore(&h5->unack.lock, flags); in h5_timed_event()
201 skb_queue_purge(&h5->unack); in h5_peer_reset()
228 skb_queue_head_init(&h5->unack); in h5_open()
256 skb_queue_purge(&h5->unack); in h5_close()
286 spin_lock_irqsave(&h5->unack.lock, flags); in h5_pkt_cull()
288 to_remove = skb_queue_len(&h5->unack); in h5_pkt_cull()
306 skb_queue_walk_safe(&h5->unack, skb, tmp) { in h5_pkt_cull()
310 __skb_unlink(skb, &h5->unack); in h5_pkt_cull()
314 if (skb_queue_empty(&h5->unack)) in h5_pkt_cull()
318 spin_unlock_irqrestore(&h5->unack.lock, flags); in h5_pkt_cull()
749 spin_lock_irqsave_nested(&h5->unack.lock, flags, SINGLE_DEPTH_NESTING); in h5_dequeue()
751 if (h5->unack.qlen >= h5->tx_win) in h5_dequeue()
759 __skb_queue_tail(&h5->unack, skb); in h5_dequeue()
761 spin_unlock_irqrestore(&h5->unack.lock, flags); in h5_dequeue()
770 spin_unlock_irqrestore(&h5->unack.lock, flags); in h5_dequeue()