/linux-6.6.21/drivers/net/wireless/marvell/mwifiex/ |
D | usb.c | 875 struct sk_buff *skb_aggr, *skb_tmp; in mwifiex_usb_prepare_tx_aggr_skb() local 896 while ((skb_tmp = skb_dequeue(&port->tx_aggr.aggr_list))) in mwifiex_usb_prepare_tx_aggr_skb() 897 mwifiex_write_data_complete(adapter, skb_tmp, 0, -1); in mwifiex_usb_prepare_tx_aggr_skb() 907 while ((skb_tmp = skb_dequeue(&port->tx_aggr.aggr_list))) { in mwifiex_usb_prepare_tx_aggr_skb() 909 pad = (align - (skb_tmp->len & (align - 1))) % align; in mwifiex_usb_prepare_tx_aggr_skb() 910 payload = skb_put(skb_aggr, skb_tmp->len + pad); in mwifiex_usb_prepare_tx_aggr_skb() 911 memcpy(payload, skb_tmp->data, skb_tmp->len); in mwifiex_usb_prepare_tx_aggr_skb() 914 *(__le16 *)payload = cpu_to_le16(skb_tmp->len); in mwifiex_usb_prepare_tx_aggr_skb() 920 *(__le16 *)payload = cpu_to_le16(skb_tmp->len + pad); in mwifiex_usb_prepare_tx_aggr_skb() 926 tx_info->bss_num = MWIFIEX_SKB_TXCB(skb_tmp)->bss_num; in mwifiex_usb_prepare_tx_aggr_skb() [all …]
|
D | pcie.c | 1572 struct sk_buff *skb_tmp = NULL; in mwifiex_pcie_process_recv_data() local 1632 skb_tmp = mwifiex_alloc_dma_align_buf(MWIFIEX_RX_DATA_BUF_SIZE, in mwifiex_pcie_process_recv_data() 1634 if (!skb_tmp) { in mwifiex_pcie_process_recv_data() 1640 if (mwifiex_map_pci_memory(adapter, skb_tmp, in mwifiex_pcie_process_recv_data() 1645 buf_pa = MWIFIEX_SKB_DMA_ADDR(skb_tmp); in mwifiex_pcie_process_recv_data() 1649 skb_tmp, rd_index); in mwifiex_pcie_process_recv_data() 1650 card->rx_buf_list[rd_index] = skb_tmp; in mwifiex_pcie_process_recv_data() 1655 desc2->len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1656 desc2->frag_len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1662 desc->len = skb_tmp->len; in mwifiex_pcie_process_recv_data()
|
/linux-6.6.21/drivers/net/ethernet/huawei/hinic/ |
D | hinic_ethtool.c | 1516 struct sk_buff *skb_tmp = NULL; in hinic_run_lp_test() local 1523 skb_tmp = alloc_skb(LP_PKT_LEN, GFP_ATOMIC); in hinic_run_lp_test() 1524 if (!skb_tmp) in hinic_run_lp_test() 1527 test_data = __skb_put(skb_tmp, LP_PKT_LEN); in hinic_run_lp_test() 1537 skb_tmp->queue_mapping = 0; in hinic_run_lp_test() 1538 skb_tmp->ip_summed = CHECKSUM_COMPLETE; in hinic_run_lp_test() 1539 skb_tmp->dev = netdev; in hinic_run_lp_test() 1546 skb = pskb_copy(skb_tmp, GFP_ATOMIC); in hinic_run_lp_test() 1548 dev_kfree_skb_any(skb_tmp); in hinic_run_lp_test() 1559 dev_kfree_skb_any(skb_tmp); in hinic_run_lp_test() [all …]
|
/linux-6.6.21/drivers/net/ethernet/microchip/sparx5/ |
D | sparx5_ptp.c | 205 struct sk_buff *skb, *skb_tmp; in sparx5_ptp_txtstamp_old_release() local 209 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in sparx5_ptp_txtstamp_old_release() 308 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in sparx5_ptp_irq_handler() local 356 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in sparx5_ptp_irq_handler()
|
/linux-6.6.21/net/batman-adv/ |
D | bat_v_ogm.c | 266 struct sk_buff *skb, *skb_tmp; in batadv_v_ogm_send_softif() local 344 skb_tmp = skb_clone(skb, GFP_ATOMIC); in batadv_v_ogm_send_softif() 345 if (!skb_tmp) { in batadv_v_ogm_send_softif() 350 batadv_v_ogm_queue_on_if(skb_tmp, hard_iface); in batadv_v_ogm_send_softif()
|
/linux-6.6.21/drivers/net/ethernet/microchip/lan966x/ |
D | lan966x_ptp.c | 357 struct sk_buff *skb, *skb_tmp; in lan966x_ptp_txtstamp_old_release() local 361 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in lan966x_ptp_txtstamp_old_release() 458 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in lan966x_ptp_irq_handler() local 504 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in lan966x_ptp_irq_handler()
|
/linux-6.6.21/drivers/net/ethernet/toshiba/ |
D | ps3_gelic_net.c | 772 struct sk_buff *skb_tmp; in gelic_descr_prepare_tx() local 776 skb_tmp = gelic_put_vlan_tag(skb, in gelic_descr_prepare_tx() 778 if (!skb_tmp) in gelic_descr_prepare_tx() 780 skb = skb_tmp; in gelic_descr_prepare_tx()
|
/linux-6.6.21/drivers/net/ethernet/mscc/ |
D | ocelot_ptp.c | 749 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in ocelot_get_txtstamp() local 780 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in ocelot_get_txtstamp()
|
/linux-6.6.21/drivers/net/dsa/sja1105/ |
D | sja1105_ptp.c | 418 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in sja1110_process_meta_tstamp() local 427 skb_queue_walk_safe(&ptp_data->skb_txtstamp_queue, skb, skb_tmp) { in sja1110_process_meta_tstamp()
|
/linux-6.6.21/drivers/net/phy/ |
D | micrel.c | 2817 struct sk_buff *skb, *skb_tmp; in lan8814_match_tx_skb() local 2823 skb_queue_walk_safe(&ptp_priv->tx_queue, skb, skb_tmp) { in lan8814_match_tx_skb() 2871 struct sk_buff *skb, *skb_tmp; in lan8814_match_skb() local 2877 skb_queue_walk_safe(&ptp_priv->rx_queue, skb, skb_tmp) { in lan8814_match_skb()
|
/linux-6.6.21/drivers/net/dsa/ocelot/ |
D | felix.c | 1472 struct sk_buff *skb_match = NULL, *skb_tmp; in ocelot_port_purge_txtstamp_skb() local 1480 skb_queue_walk_safe(&ocelot_port->tx_skbs, skb, skb_tmp) { in ocelot_port_purge_txtstamp_skb()
|