Searched refs:iskb (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/net/can/j1939/ |
D | main.c | 38 static void j1939_can_recv(struct sk_buff *iskb, void *data) in j1939_can_recv() argument 46 if (!can_is_can_skb(iskb)) in j1939_can_recv() 54 skb = skb_clone(iskb, GFP_ATOMIC); in j1939_can_recv() 59 can_skb_set_owner(skb, iskb->sk); in j1939_can_recv() 75 iskcb = j1939_skb_to_cb(iskb); in j1939_can_recv()
|
/linux-6.1.9/net/tipc/ |
D | msg.c | 577 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos) in tipc_msg_extract() argument 582 *iskb = NULL; in tipc_msg_extract() 596 *iskb = tipc_buf_acquire(imsz, GFP_ATOMIC); in tipc_msg_extract() 597 if (!*iskb) in tipc_msg_extract() 600 skb_copy_to_linear_data(*iskb, ihdr, imsz); in tipc_msg_extract() 601 if (unlikely(!tipc_msg_validate(iskb))) in tipc_msg_extract() 608 kfree_skb(*iskb); in tipc_msg_extract() 609 *iskb = NULL; in tipc_msg_extract()
|
D | link.c | 1324 struct sk_buff *iskb; in tipc_link_input() local 1333 while (tipc_msg_extract(skb, &iskb, &pos)) in tipc_link_input() 1334 tipc_data_input(l, iskb, &tmpq); in tipc_link_input() 1371 struct sk_buff *iskb; in tipc_link_tnl_rcv() local 1383 if (unlikely(!tipc_msg_extract(skb, &iskb, &ipos))) { in tipc_link_tnl_rcv() 1405 iskb = skb; in tipc_link_tnl_rcv() 1409 seqno = buf_seqno(iskb); in tipc_link_tnl_rcv() 1411 kfree_skb(iskb); in tipc_link_tnl_rcv() 1415 __tipc_skb_queue_sorted(fdefq, seqno, iskb); in tipc_link_tnl_rcv() 1420 if (!tipc_data_input(l, iskb, inputq)) in tipc_link_tnl_rcv() [all …]
|
D | msg.h | 1168 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
|