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

/linux-master/arch/um/drivers/
H A Dvector_transports.c246 int temp_tx; local
271 if (get_uint_param(vp->parsed, "tx_key", &temp_tx)) {
275 td->tx_key = cpu_to_be32(temp_tx);
308 unsigned long temp_tx; local
352 if (get_ulong_param(vp->parsed, "tx_cookie", &temp_tx)) {
356 td->tx_cookie = cpu_to_be64(temp_tx);
361 td->tx_cookie = cpu_to_be32(temp_tx);
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dethtool.c684 struct e1000_ring *temp_tx = NULL, *temp_rx = NULL; local
722 temp_tx = vmalloc(size);
723 if (!temp_tx) {
745 memcpy(temp_tx, adapter->tx_ring, size);
746 temp_tx->count = new_tx_count;
747 err = e1000e_setup_tx_resources(temp_tx);
762 memcpy(adapter->tx_ring, temp_tx, size);
773 e1000e_free_tx_resources(temp_tx);
778 vfree(temp_tx);

Completed in 104 milliseconds