Searched refs:iskb (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/net/can/j1939/ |
H A D | main.c | 34 static void j1939_can_recv(struct sk_buff *iskb, void *data) in j1939_can_recv() argument 42 if (!can_is_can_skb(iskb)) in j1939_can_recv() 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()
|
/openbmc/linux/net/tipc/ |
H A 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()
|
H A 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 …]
|
H A D | msg.h | 1168 bool tipc_msg_extract(struct sk_buff *skb, struct sk_buff **iskb, int *pos);
|