Lines Matching defs:arpq
110 skb_queue_walk_safe(&e->arpq, skb, tmp) {
111 __skb_unlink(skb, &e->arpq);
125 __skb_queue_tail(&e->arpq, skb);
153 * Only the first packet added to the arpq should kick off
155 * we allow each packet added to the arpq to retry resolution
167 if (!skb_queue_empty(&e->arpq))
203 * Only the first packet added to the arpq should kick off
205 * we allow each packet added to the arpq to retry resolution
374 * on the arpq head. If a packet specifies a failure handler it is invoked,
380 static void handle_failed_resolution(struct t3cdev *dev, struct sk_buff_head *arpq)
384 skb_queue_walk_safe(arpq, skb, tmp) {
387 __skb_unlink(skb, arpq);
401 struct sk_buff_head arpq;
418 __skb_queue_head_init(&arpq);
427 skb_queue_splice_init(&e->arpq, &arpq);
439 if (!skb_queue_empty(&arpq))
440 handle_failed_resolution(dev, &arpq);
460 __skb_queue_head_init(&d->l2tab[i].arpq);