Searched refs:tmp_skb (Results 1 – 9 of 9) sorted by relevance
/linux-6.3-rc2/net/nfc/ |
A D | digital_dep.c | 909 struct sk_buff *chaining_skb, *tmp_skb; in digital_in_send_dep_req() local 926 if (IS_ERR(tmp_skb)) in digital_in_send_dep_req() 927 return PTR_ERR(tmp_skb); in digital_in_send_dep_req() 931 ddev->skb_add_crc(tmp_skb); in digital_in_send_dep_req() 938 if (tmp_skb != skb) in digital_in_send_dep_req() 939 kfree_skb(tmp_skb); in digital_in_send_dep_req() 1323 if (IS_ERR(tmp_skb)) in digital_tg_send_dep_res() 1324 return PTR_ERR(tmp_skb); in digital_tg_send_dep_res() 1328 ddev->skb_add_crc(tmp_skb); in digital_tg_send_dep_res() 1335 if (tmp_skb != skb) in digital_tg_send_dep_res() [all …]
|
/linux-6.3-rc2/drivers/net/dsa/hirschmann/ |
A D | hellcreek_hwtstamp.c | 218 struct sk_buff *tmp_skb; in hellcreek_txtstamp_work() local 270 tmp_skb = ps->tx_skb; in hellcreek_txtstamp_work() 280 skb_complete_tx_timestamp(tmp_skb, &shhwtstamps); in hellcreek_txtstamp_work()
|
/linux-6.3-rc2/net/ipv4/ |
A D | ip_output.c | 1494 struct sk_buff *skb, *tmp_skb; in __ip_make_skb() local 1512 while ((tmp_skb = __skb_dequeue(queue)) != NULL) { in __ip_make_skb() 1513 __skb_pull(tmp_skb, skb_network_header_len(skb)); in __ip_make_skb() 1514 *tail_skb = tmp_skb; in __ip_make_skb() 1515 tail_skb = &(tmp_skb->next); in __ip_make_skb() 1516 skb->len += tmp_skb->len; in __ip_make_skb() 1517 skb->data_len += tmp_skb->len; in __ip_make_skb() 1518 skb->truesize += tmp_skb->truesize; in __ip_make_skb() 1519 tmp_skb->destructor = NULL; in __ip_make_skb() 1520 tmp_skb->sk = NULL; in __ip_make_skb()
|
/linux-6.3-rc2/drivers/net/dsa/mv88e6xxx/ |
A D | hwtstamp.c | 366 struct sk_buff *tmp_skb; in mv88e6xxx_txtstamp_work() local 431 tmp_skb = ps->tx_skb; in mv88e6xxx_txtstamp_work() 434 skb_complete_tx_timestamp(tmp_skb, &shhwtstamps); in mv88e6xxx_txtstamp_work()
|
/linux-6.3-rc2/net/ipv6/ |
A D | ip6_output.c | 1908 struct sk_buff *skb, *tmp_skb; in __ip6_make_skb() local 1927 while ((tmp_skb = __skb_dequeue(queue)) != NULL) { in __ip6_make_skb() 1928 __skb_pull(tmp_skb, skb_network_header_len(skb)); in __ip6_make_skb() 1929 *tail_skb = tmp_skb; in __ip6_make_skb() 1930 tail_skb = &(tmp_skb->next); in __ip6_make_skb() 1931 skb->len += tmp_skb->len; in __ip6_make_skb() 1932 skb->data_len += tmp_skb->len; in __ip6_make_skb() 1933 skb->truesize += tmp_skb->truesize; in __ip6_make_skb() 1934 tmp_skb->destructor = NULL; in __ip6_make_skb() 1935 tmp_skb->sk = NULL; in __ip6_make_skb()
|
/linux-6.3-rc2/drivers/net/ethernet/oki-semi/pch_gbe/ |
A D | pch_gbe_main.c | 1069 struct sk_buff *tmp_skb; in pch_gbe_tx_queue() local 1127 tmp_skb = buffer_info->skb; in pch_gbe_tx_queue() 1130 memcpy(tmp_skb->data, skb->data, ETH_HLEN); in pch_gbe_tx_queue() 1131 tmp_skb->data[ETH_HLEN] = 0x00; in pch_gbe_tx_queue() 1132 tmp_skb->data[ETH_HLEN + 1] = 0x00; in pch_gbe_tx_queue() 1133 tmp_skb->len = skb->len; in pch_gbe_tx_queue() 1134 memcpy(&tmp_skb->data[ETH_HLEN + 2], &skb->data[ETH_HLEN], in pch_gbe_tx_queue() 1137 buffer_info->length = tmp_skb->len; in pch_gbe_tx_queue() 1138 buffer_info->dma = dma_map_single(&adapter->pdev->dev, tmp_skb->data, in pch_gbe_tx_queue() 1155 tx_desc->length = (tmp_skb->len); in pch_gbe_tx_queue() [all …]
|
/linux-6.3-rc2/net/batman-adv/ |
A D | distributed-arp-table.c | 683 struct sk_buff *tmp_skb; in batadv_dat_forward_data() local 701 tmp_skb = pskb_copy_for_clone(skb, GFP_ATOMIC); in batadv_dat_forward_data() 702 if (!batadv_send_skb_prepare_unicast_4addr(bat_priv, tmp_skb, in batadv_dat_forward_data() 705 kfree_skb(tmp_skb); in batadv_dat_forward_data() 709 send_status = batadv_send_unicast_skb(tmp_skb, neigh_node); in batadv_dat_forward_data()
|
/linux-6.3-rc2/drivers/scsi/bnx2fc/ |
A D | bnx2fc_fcoe.c | 432 struct sk_buff *tmp_skb; in bnx2fc_rcv() local 444 tmp_skb = skb_share_check(skb, GFP_ATOMIC); in bnx2fc_rcv() 445 if (!tmp_skb) in bnx2fc_rcv() 448 skb = tmp_skb; in bnx2fc_rcv()
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath10k/ |
A D | htt_tx.c | 1280 struct sk_buff *tmp_skb; in ath10k_htt_tx_hl() local 1334 tmp_skb = msdu; in ath10k_htt_tx_hl() 1340 kfree_skb(tmp_skb); in ath10k_htt_tx_hl()
|
Completed in 30 milliseconds