Lines Matching defs:list

12  *    notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in the
118 * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate
942 struct sk_buff_head list;
945 __skb_queue_head_init(&list);
954 skb_queue_splice_init(&l->wakeupq, &list);
958 skb_queue_splice_init(&list, l->inputq);
992 * tipc_link_xmit(): enqueue buffer list according to queue situation
994 * @list: chain of buffers containing message
995 * @xmitq: returned list of packets to be sent by caller
1001 int tipc_link_xmit(struct tipc_link *l, struct sk_buff_head *list,
1010 int pkt_cnt = skb_queue_len(list);
1022 hdr = buf_msg(skb_peek(list));
1024 pr_warn("Too large msg, purging xmit list %d %d %d %d %d!\n",
1025 skb_queue_len(list), msg_user(hdr),
1027 __skb_queue_purge(list);
1047 while ((skb = __skb_dequeue(list))) {
1056 __skb_queue_purge(list);
1085 l->backlog[imp].len += (1 + skb_queue_len(list));
1087 skb_queue_splice_tail_init(list, backlogq);
1307 pr_warn_ratelimited("Unable to build fragment list\n");
1934 /* tipc_link_tnl_prepare(): prepare and return a list of tunnel packets
2353 struct sk_buff_head list;
2355 __skb_queue_head_init(&list);
2356 if (!tipc_link_build_bc_proto_msg(l->bc_rcvlink, false, 0, &list))
2358 msg_set_bc_ack_invalid(buf_msg(skb_peek(&list)), true);
2359 tipc_link_xmit(l, &list, xmitq);
2888 struct sk_buff_head *list;
2913 list = &l->transmq;
2914 len = skb_queue_len(list);
2915 hskb = skb_peek(list);
2916 tskb = skb_peek_tail(list);
2921 list = &l->deferdq;
2922 len = skb_queue_len(list);
2923 hskb = skb_peek(list);
2924 tskb = skb_peek_tail(list);
2929 list = &l->backlogq;
2930 len = skb_queue_len(list);
2931 hskb = skb_peek(list);
2932 tskb = skb_peek_tail(list);
2937 list = l->inputq;
2938 len = skb_queue_len(list);
2939 hskb = skb_peek(list);
2940 tskb = skb_peek_tail(list);