Lines Matching defs:sublist
6138 * sublist. This can't cause out-of-order delivery to any single ptype,
6139 * because the 'last ptype' must be constant across the sublist, and all
6142 /* Current (common) ptype of sublist */
6144 /* Current (common) orig_dev of sublist */
6147 LIST_HEAD(sublist);
6158 /* dispatch old sublist */
6159 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
6160 /* start new sublist */
6161 INIT_LIST_HEAD(&sublist);
6165 list_add_tail(&skb->list, &sublist);
6168 /* dispatch final sublist */
6169 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
6201 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
6205 struct list_head sublist;
6207 /* Handle the previous sublist */
6208 list_cut_before(&sublist, head, &skb->list);
6209 if (!list_empty(&sublist))
6210 __netif_receive_skb_list_core(&sublist, pfmemalloc);
6219 /* Handle the remaining sublist */
6286 LIST_HEAD(sublist);
6293 list_add_tail(&skb->list, &sublist);
6295 list_splice_init(&sublist, head);