Searched refs:arpq (Results 1 - 3 of 3) sorted by relevance

/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
H A Dl2t.c110 skb_queue_walk_safe(&e->arpq, skb, tmp) { setup_l2e_send_pending()
111 __skb_unlink(skb, &e->arpq); setup_l2e_send_pending()
125 __skb_queue_tail(&e->arpq, skb); arpq_enqueue()
152 * Only the first packet added to the arpq should kick off t3_l2t_send_slow()
154 * we allow each packet added to the arpq to retry resolution t3_l2t_send_slow()
166 if (!skb_queue_empty(&e->arpq)) t3_l2t_send_slow()
202 * Only the first packet added to the arpq should kick off t3_l2t_send_event()
204 * we allow each packet added to the arpq to retry resolution t3_l2t_send_event()
373 * on the arpq head. If a packet specifies a failure handler it is invoked,
379 static void handle_failed_resolution(struct t3cdev *dev, struct sk_buff_head *arpq) handle_failed_resolution() argument
383 skb_queue_walk_safe(arpq, skb, tmp) { skb_queue_walk_safe()
386 __skb_unlink(skb, arpq); skb_queue_walk_safe()
400 struct sk_buff_head arpq; t3_l2t_update() local
417 __skb_queue_head_init(&arpq); t3_l2t_update()
426 skb_queue_splice_init(&e->arpq, &arpq); t3_l2t_update()
438 if (!skb_queue_empty(&arpq)) t3_l2t_update()
439 handle_failed_resolution(dev, &arpq); t3_l2t_update()
459 __skb_queue_head_init(&d->l2tab[i].arpq); t3_init_l2t()
H A Dl2t.h67 struct sk_buff_head arpq; /* queue of packets awaiting resolution */ member in struct:l2t_entry
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb4/
H A Dl2t.c457 * on the arpq head. If a packet specifies a failure handler it is invoked,
460 static void handle_failed_resolution(struct adapter *adap, struct sk_buff *arpq) handle_failed_resolution() argument
462 while (arpq) { handle_failed_resolution()
463 struct sk_buff *skb = arpq; handle_failed_resolution()
466 arpq = skb->next; handle_failed_resolution()
482 struct sk_buff *arpq = NULL; t4_l2t_update() local
509 arpq = e->arpq_head; t4_l2t_update()
524 if (arpq) t4_l2t_update()
525 handle_failed_resolution(adap, arpq); t4_l2t_update()

Completed in 158 milliseconds