Home
last modified time | relevance | path

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

/linux-4.4.14/net/tipc/
Dmsg.c392 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos) in tipc_msg_extract() argument
397 *iskb = NULL; in tipc_msg_extract()
406 *iskb = skb_clone(skb, GFP_ATOMIC); in tipc_msg_extract()
407 if (unlikely(!*iskb)) in tipc_msg_extract()
409 skb_pull(*iskb, offset); in tipc_msg_extract()
410 imsz = msg_size(buf_msg(*iskb)); in tipc_msg_extract()
411 skb_trim(*iskb, imsz); in tipc_msg_extract()
412 if (unlikely(!tipc_msg_validate(*iskb))) in tipc_msg_extract()
418 kfree_skb(*iskb); in tipc_msg_extract()
419 *iskb = NULL; in tipc_msg_extract()
Dlink.c899 struct sk_buff *iskb; in tipc_link_input() local
911 if (!tipc_msg_extract(skb, &iskb, &ipos)) in tipc_link_input()
914 skb = iskb; in tipc_link_input()
928 while (tipc_msg_extract(skb, &iskb, &pos)) in tipc_link_input()
929 tipc_data_input(l, iskb, &tmpq); in tipc_link_input()
Dmsg.h794 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);