Searched refs:iskb (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/net/tipc/ |
D | msg.c | 417 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos) in tipc_msg_extract() argument 422 *iskb = NULL; in tipc_msg_extract() 436 *iskb = tipc_buf_acquire(imsz, GFP_ATOMIC); in tipc_msg_extract() 437 if (!*iskb) in tipc_msg_extract() 440 skb_copy_to_linear_data(*iskb, ihdr, imsz); in tipc_msg_extract() 441 if (unlikely(!tipc_msg_validate(iskb))) in tipc_msg_extract() 448 kfree_skb(*iskb); in tipc_msg_extract() 449 *iskb = NULL; in tipc_msg_extract()
|
D | link.c | 1123 struct sk_buff *iskb; in tipc_link_input() local 1135 if (!tipc_msg_extract(skb, &iskb, &ipos)) in tipc_link_input() 1138 skb = iskb; in tipc_link_input() 1152 while (tipc_msg_extract(skb, &iskb, &pos)) in tipc_link_input() 1153 tipc_data_input(l, iskb, &tmpq); in tipc_link_input()
|
D | msg.h | 963 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
|