/linux-6.1.9/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 | 1563 struct sk_buff *skb_tmp = NULL; in mwifiex_pcie_process_recv_data() local 1623 skb_tmp = mwifiex_alloc_dma_align_buf(MWIFIEX_RX_DATA_BUF_SIZE, in mwifiex_pcie_process_recv_data() 1625 if (!skb_tmp) { in mwifiex_pcie_process_recv_data() 1631 if (mwifiex_map_pci_memory(adapter, skb_tmp, in mwifiex_pcie_process_recv_data() 1636 buf_pa = MWIFIEX_SKB_DMA_ADDR(skb_tmp); in mwifiex_pcie_process_recv_data() 1640 skb_tmp, rd_index); in mwifiex_pcie_process_recv_data() 1641 card->rx_buf_list[rd_index] = skb_tmp; in mwifiex_pcie_process_recv_data() 1646 desc2->len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1647 desc2->frag_len = skb_tmp->len; in mwifiex_pcie_process_recv_data() 1653 desc->len = skb_tmp->len; in mwifiex_pcie_process_recv_data()
|
/linux-6.1.9/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.1.9/drivers/net/ethernet/microchip/sparx5/ |
D | sparx5_ptp.c | 207 struct sk_buff *skb, *skb_tmp; in sparx5_ptp_txtstamp_old_release() local 211 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in sparx5_ptp_txtstamp_old_release() 310 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in sparx5_ptp_irq_handler() local 358 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in sparx5_ptp_irq_handler()
|
/linux-6.1.9/net/batman-adv/ |
D | bat_v_ogm.c | 265 struct sk_buff *skb, *skb_tmp; in batadv_v_ogm_send_softif() local 343 skb_tmp = skb_clone(skb, GFP_ATOMIC); in batadv_v_ogm_send_softif() 344 if (!skb_tmp) { in batadv_v_ogm_send_softif() 349 batadv_v_ogm_queue_on_if(skb_tmp, hard_iface); in batadv_v_ogm_send_softif()
|
/linux-6.1.9/drivers/net/ethernet/microchip/lan966x/ |
D | lan966x_ptp.c | 142 struct sk_buff *skb, *skb_tmp; in lan966x_ptp_txtstamp_old_release() local 146 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in lan966x_ptp_txtstamp_old_release() 243 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in lan966x_ptp_irq_handler() local 289 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in lan966x_ptp_irq_handler()
|
/linux-6.1.9/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-6.1.9/drivers/net/ethernet/mscc/ |
D | ocelot_ptp.c | 728 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in ocelot_get_txtstamp() local 759 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) { in ocelot_get_txtstamp()
|
/linux-6.1.9/drivers/net/dsa/sja1105/ |
D | sja1105_ptp.c | 458 struct sk_buff *skb, *skb_tmp, *skb_match = NULL; in sja1110_process_meta_tstamp() local 467 skb_queue_walk_safe(&ptp_data->skb_txtstamp_queue, skb, skb_tmp) { in sja1110_process_meta_tstamp()
|
/linux-6.1.9/drivers/net/phy/ |
D | micrel.c | 2612 struct sk_buff *skb, *skb_tmp; in lan8814_dequeue_tx_skb() local 2622 skb_queue_walk_safe(&ptp_priv->tx_queue, skb, skb_tmp) { in lan8814_dequeue_tx_skb() 2660 struct sk_buff *skb, *skb_tmp; in lan8814_match_skb() local 2666 skb_queue_walk_safe(&ptp_priv->rx_queue, skb, skb_tmp) { in lan8814_match_skb()
|
/linux-6.1.9/drivers/net/dsa/ocelot/ |
D | felix.c | 1461 struct sk_buff *skb_match = NULL, *skb_tmp; in ocelot_port_purge_txtstamp_skb() local 1469 skb_queue_walk_safe(&ocelot_port->tx_skbs, skb, skb_tmp) { in ocelot_port_purge_txtstamp_skb()
|