Searched refs:iskb (Results 1 – 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/net/can/j1939/ |
D | main.c | 38 static void j1939_can_recv(struct sk_buff *iskb, void *data) in j1939_can_recv() argument 50 skb = skb_clone(iskb, GFP_ATOMIC); in j1939_can_recv() 55 can_skb_set_owner(skb, iskb->sk); in j1939_can_recv() 71 iskcb = j1939_skb_to_cb(iskb); in j1939_can_recv()
|
/kernel/linux/linux-5.10/net/tipc/ |
D | msg.c | 581 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos) in tipc_msg_extract() argument 586 *iskb = NULL; in tipc_msg_extract() 600 *iskb = tipc_buf_acquire(imsz, GFP_ATOMIC); in tipc_msg_extract() 601 if (!*iskb) in tipc_msg_extract() 604 skb_copy_to_linear_data(*iskb, ihdr, imsz); in tipc_msg_extract() 605 if (unlikely(!tipc_msg_validate(iskb))) in tipc_msg_extract() 612 kfree_skb(*iskb); in tipc_msg_extract() 613 *iskb = NULL; in tipc_msg_extract()
|
D | link.c | 1288 struct sk_buff *iskb; in tipc_link_input() local 1297 while (tipc_msg_extract(skb, &iskb, &pos)) in tipc_link_input() 1298 tipc_data_input(l, iskb, &tmpq); in tipc_link_input() 1335 struct sk_buff *iskb; in tipc_link_tnl_rcv() local 1347 if (unlikely(!tipc_msg_extract(skb, &iskb, &ipos))) { in tipc_link_tnl_rcv() 1369 iskb = skb; in tipc_link_tnl_rcv() 1373 seqno = buf_seqno(iskb); in tipc_link_tnl_rcv() 1375 kfree_skb(iskb); in tipc_link_tnl_rcv() 1379 __tipc_skb_queue_sorted(fdefq, seqno, iskb); in tipc_link_tnl_rcv() 1384 if (!tipc_data_input(l, iskb, inputq)) in tipc_link_tnl_rcv() [all …]
|
D | msg.h | 1191 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
|