Home
last modified time | relevance | path

Searched refs:temp_tx (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/arch/um/drivers/
Dvector_transports.c246 int temp_tx; in build_gre_transport_data() local
271 if (get_uint_param(vp->parsed, "tx_key", &temp_tx)) { in build_gre_transport_data()
275 td->tx_key = cpu_to_be32(temp_tx); in build_gre_transport_data()
308 unsigned long temp_tx; in build_l2tpv3_transport_data() local
352 if (get_ulong_param(vp->parsed, "tx_cookie", &temp_tx)) { in build_l2tpv3_transport_data()
356 td->tx_cookie = cpu_to_be64(temp_tx); in build_l2tpv3_transport_data()
361 td->tx_cookie = cpu_to_be32(temp_tx); in build_l2tpv3_transport_data()
/Linux-v6.1/drivers/net/ethernet/intel/e1000e/
Dethtool.c676 struct e1000_ring *temp_tx = NULL, *temp_rx = NULL; in e1000_set_ringparam() local
714 temp_tx = vmalloc(size); in e1000_set_ringparam()
715 if (!temp_tx) { in e1000_set_ringparam()
737 memcpy(temp_tx, adapter->tx_ring, size); in e1000_set_ringparam()
738 temp_tx->count = new_tx_count; in e1000_set_ringparam()
739 err = e1000e_setup_tx_resources(temp_tx); in e1000_set_ringparam()
754 memcpy(adapter->tx_ring, temp_tx, size); in e1000_set_ringparam()
765 e1000e_free_tx_resources(temp_tx); in e1000_set_ringparam()
770 vfree(temp_tx); in e1000_set_ringparam()