Searched refs:skb_tmp (Results 1 – 6 of 6) sorted by relevance
/Linux-v5.10/drivers/net/wireless/marvell/mwifiex/ |
D | usb.c | 870 struct sk_buff *skb_aggr, *skb_tmp; in mwifiex_usb_prepare_tx_aggr_skb() local 891 while ((skb_tmp = skb_dequeue(&port->tx_aggr.aggr_list))) in mwifiex_usb_prepare_tx_aggr_skb() 892 mwifiex_write_data_complete(adapter, skb_tmp, 0, -1); in mwifiex_usb_prepare_tx_aggr_skb() 902 while ((skb_tmp = skb_dequeue(&port->tx_aggr.aggr_list))) { in mwifiex_usb_prepare_tx_aggr_skb() 904 pad = (align - (skb_tmp->len & (align - 1))) % align; in mwifiex_usb_prepare_tx_aggr_skb() 905 payload = skb_put(skb_aggr, skb_tmp->len + pad); in mwifiex_usb_prepare_tx_aggr_skb() 906 memcpy(payload, skb_tmp->data, skb_tmp->len); in mwifiex_usb_prepare_tx_aggr_skb() 909 *(u16 *)payload = cpu_to_le16(skb_tmp->len); in mwifiex_usb_prepare_tx_aggr_skb() 915 *(u16 *)payload = cpu_to_le16(skb_tmp->len + pad); in mwifiex_usb_prepare_tx_aggr_skb() 921 tx_info->bss_num = MWIFIEX_SKB_TXCB(skb_tmp)->bss_num; in mwifiex_usb_prepare_tx_aggr_skb() [all …]
|
D | pcie.c | 1537 struct sk_buff *skb_tmp = NULL; in mwifiex_pcie_process_recv_data() local 1597 skb_tmp = mwifiex_alloc_dma_align_buf(MWIFIEX_RX_DATA_BUF_SIZE, in mwifiex_pcie_process_recv_data() 1599 if (!skb_tmp) { in mwifiex_pcie_process_recv_data() 1605 if (mwifiex_map_pci_memory(adapter, skb_tmp, in mwifiex_pcie_process_recv_data() 1610 buf_pa = MWIFIEX_SKB_DMA_ADDR(skb_tmp); in mwifiex_pcie_process_recv_data() 1614 skb_tmp, rd_index); in mwifiex_pcie_process_recv_data() 1615 card->rx_buf_list[rd_index] = skb_tmp; in mwifiex_pcie_process_recv_data() 1620 desc2->len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1621 desc2->frag_len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1627 desc->len = skb_tmp->len; in mwifiex_pcie_process_recv_data()
|
/Linux-v5.10/drivers/net/ethernet/huawei/hinic/ |
D | hinic_ethtool.c | 1518 struct sk_buff *skb_tmp = NULL; in hinic_run_lp_test() local 1525 skb_tmp = alloc_skb(LP_PKT_LEN, GFP_ATOMIC); in hinic_run_lp_test() 1526 if (!skb_tmp) in hinic_run_lp_test() 1529 test_data = __skb_put(skb_tmp, LP_PKT_LEN); in hinic_run_lp_test() 1539 skb_tmp->queue_mapping = 0; in hinic_run_lp_test() 1540 skb_tmp->ip_summed = CHECKSUM_COMPLETE; in hinic_run_lp_test() 1541 skb_tmp->dev = netdev; in hinic_run_lp_test() 1548 skb = pskb_copy(skb_tmp, GFP_ATOMIC); in hinic_run_lp_test() 1550 dev_kfree_skb_any(skb_tmp); in hinic_run_lp_test() 1561 dev_kfree_skb_any(skb_tmp); in hinic_run_lp_test() [all …]
|
/Linux-v5.10/net/batman-adv/ |
D | bat_v_ogm.c | 264 struct sk_buff *skb, *skb_tmp; in batadv_v_ogm_send_softif() local 342 skb_tmp = skb_clone(skb, GFP_ATOMIC); in batadv_v_ogm_send_softif() 343 if (!skb_tmp) { in batadv_v_ogm_send_softif() 348 batadv_v_ogm_queue_on_if(skb_tmp, hard_iface); in batadv_v_ogm_send_softif()
|
/Linux-v5.10/drivers/net/ethernet/toshiba/ |
D | ps3_gelic_net.c | 769 struct sk_buff *skb_tmp; in gelic_descr_prepare_tx() local 773 skb_tmp = gelic_put_vlan_tag(skb, in gelic_descr_prepare_tx() 775 if (!skb_tmp) in gelic_descr_prepare_tx() 777 skb = skb_tmp; in gelic_descr_prepare_tx()
|
/Linux-v5.10/drivers/net/ethernet/mscc/ |
D | ocelot.c | 491 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in ocelot_get_txtstamp() local 515 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in ocelot_get_txtstamp()
|