Home
last modified time | relevance | path

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

/linux-6.1.9/arch/um/drivers/
Dvector_transports.c245 int temp_rx; in build_gre_transport_data() local
270 if (get_uint_param(vp->parsed, "rx_key", &temp_rx)) { in build_gre_transport_data()
274 td->rx_key = cpu_to_be32(temp_rx); in build_gre_transport_data()
307 unsigned long temp_rx; in build_l2tpv3_transport_data() local
351 if (get_ulong_param(vp->parsed, "rx_cookie", &temp_rx)) { in build_l2tpv3_transport_data()
355 td->rx_cookie = cpu_to_be64(temp_rx); in build_l2tpv3_transport_data()
360 td->rx_cookie = cpu_to_be32(temp_rx); in build_l2tpv3_transport_data()
/linux-6.1.9/drivers/net/ethernet/intel/e1000e/
Dethtool.c676 struct e1000_ring *temp_tx = NULL, *temp_rx = NULL; in e1000_set_ringparam() local
721 temp_rx = vmalloc(size); in e1000_set_ringparam()
722 if (!temp_rx) { in e1000_set_ringparam()
744 memcpy(temp_rx, adapter->rx_ring, size); in e1000_set_ringparam()
745 temp_rx->count = new_rx_count; in e1000_set_ringparam()
746 err = e1000e_setup_rx_resources(temp_rx); in e1000_set_ringparam()
759 memcpy(adapter->rx_ring, temp_rx, size); in e1000_set_ringparam()
771 vfree(temp_rx); in e1000_set_ringparam()