Home
last modified time | relevance | path

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

/linux-4.1.27/net/iucv/
Daf_iucv.c1831 struct sk_buff *list_skb = list->next; in iucv_callback_txdone() local
1838 while (list_skb != (struct sk_buff *)list) { in iucv_callback_txdone()
1839 if (msg->tag == IUCV_SKB_CB(list_skb)->tag) { in iucv_callback_txdone()
1840 this = list_skb; in iucv_callback_txdone()
1843 list_skb = list_skb->next; in iucv_callback_txdone()
2225 struct sk_buff *list_skb; in afiucv_hs_callback_txnotify() local
2244 list_skb = list->next; in afiucv_hs_callback_txnotify()
2245 nskb = list_skb->next; in afiucv_hs_callback_txnotify()
2246 while (list_skb != (struct sk_buff *)list) { in afiucv_hs_callback_txnotify()
2247 if (skb_shinfo(list_skb) == skb_shinfo(skb)) { in afiucv_hs_callback_txnotify()
[all …]
/linux-4.1.27/net/core/
Dskbuff.c3004 struct sk_buff *list_skb = skb_shinfo(head_skb)->frag_list; in skb_segment() local
3049 if (!hsize && i >= nfrags && skb_headlen(list_skb) && in skb_segment()
3050 (skb_headlen(list_skb) == len || sg)) { in skb_segment()
3051 BUG_ON(skb_headlen(list_skb) > len); in skb_segment()
3054 nfrags = skb_shinfo(list_skb)->nr_frags; in skb_segment()
3055 frag = skb_shinfo(list_skb)->frags; in skb_segment()
3056 frag_skb = list_skb; in skb_segment()
3057 pos += skb_headlen(list_skb); in skb_segment()
3071 nskb = skb_clone(list_skb, GFP_ATOMIC); in skb_segment()
3072 list_skb = list_skb->next; in skb_segment()
[all …]
Ddev.c7129 struct sk_buff **list_skb; in dev_cpu_callback() local
7143 list_skb = &sd->completion_queue; in dev_cpu_callback()
7144 while (*list_skb) in dev_cpu_callback()
7145 list_skb = &(*list_skb)->next; in dev_cpu_callback()
7147 *list_skb = oldsd->completion_queue; in dev_cpu_callback()