Searched refs:iskb (Results 1 - 3 of 3) sorted by relevance
/linux-4.4.14/net/tipc/ |
H A D | msg.c | 386 * @iskb: extracted inner buffer, to be returned 392 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos) tipc_msg_extract() argument 397 *iskb = NULL; tipc_msg_extract() 406 *iskb = skb_clone(skb, GFP_ATOMIC); tipc_msg_extract() 407 if (unlikely(!*iskb)) tipc_msg_extract() 409 skb_pull(*iskb, offset); tipc_msg_extract() 410 imsz = msg_size(buf_msg(*iskb)); tipc_msg_extract() 411 skb_trim(*iskb, imsz); tipc_msg_extract() 412 if (unlikely(!tipc_msg_validate(*iskb))) tipc_msg_extract() 418 kfree_skb(*iskb); tipc_msg_extract() 419 *iskb = NULL; tipc_msg_extract()
|
H A D | link.c | 899 struct sk_buff *iskb; tipc_link_input() local 911 if (!tipc_msg_extract(skb, &iskb, &ipos)) tipc_link_input() 914 skb = iskb; tipc_link_input() 928 while (tipc_msg_extract(skb, &iskb, &pos)) tipc_link_input() 929 tipc_data_input(l, iskb, &tmpq); tipc_link_input()
|
H A D | msg.h | 794 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
|
Completed in 137 milliseconds