Home
last modified time | relevance | path

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

/drivers/net/ethernet/chelsio/cxgb3/
Dl2t.c110 skb_queue_walk_safe(&e->arpq, skb, tmp) { in setup_l2e_send_pending()
111 __skb_unlink(skb, &e->arpq); in setup_l2e_send_pending()
125 __skb_queue_tail(&e->arpq, skb); in arpq_enqueue()
166 if (!skb_queue_empty(&e->arpq)) in t3_l2t_send_slow()
379 static void handle_failed_resolution(struct t3cdev *dev, struct sk_buff_head *arpq) in handle_failed_resolution() argument
383 skb_queue_walk_safe(arpq, skb, tmp) { in handle_failed_resolution()
386 __skb_unlink(skb, arpq); in handle_failed_resolution()
400 struct sk_buff_head arpq; in t3_l2t_update() local
417 __skb_queue_head_init(&arpq); in t3_l2t_update()
426 skb_queue_splice_init(&e->arpq, &arpq); in t3_l2t_update()
[all …]
Dl2t.h67 struct sk_buff_head arpq; /* queue of packets awaiting resolution */ member
/drivers/net/ethernet/chelsio/cxgb4/
Dl2t.c419 static void handle_failed_resolution(struct adapter *adap, struct sk_buff *arpq) in handle_failed_resolution() argument
421 while (arpq) { in handle_failed_resolution()
422 struct sk_buff *skb = arpq; in handle_failed_resolution()
425 arpq = skb->next; in handle_failed_resolution()
441 struct sk_buff *arpq = NULL; in t4_l2t_update() local
468 arpq = e->arpq_head; in t4_l2t_update()
483 if (arpq) in t4_l2t_update()
484 handle_failed_resolution(adap, arpq); in t4_l2t_update()