Searched refs:ether_transmit_index (Results 1 - 3 of 3) sorted by relevance

/barrelfish-master/usr/drivers/lo/
H A Dlo_qdriver.c46 static uint32_t ether_transmit_index = 0, ether_transmit_bufptr = 0;
264 if (ether_transmit_index >= ether_transmit_bufptr) {
266 ((ether_transmit_index - ether_transmit_bufptr) %
269 nr_free = (ether_transmit_bufptr - ether_transmit_index) %
279 transmit_ring[ether_transmit_index] = tdesc;
280 pbuf_list_tx[ether_transmit_index].opaque = opaque;
282 ether_transmit_index = (ether_transmit_index + 1) % DRIVER_TRANSMIT_BUFFER;
286 LO_DEBUG("ether_transmit_index %"PRIu32"\n", ether_transmit_index);
[all...]
/barrelfish-master/usr/vmkitmon/
H A Dpci_vmkitmon_eth.c33 static uint32_t ether_transmit_index = 0, ether_transmit_bufptr = 0; variable
143 pbuf_list_tx[ether_transmit_index].opaque = buffer->opaque;
144 ether_transmit_index = (ether_transmit_index + 1) % DRIVER_TRANSMIT_BUFFER;
161 if (ether_transmit_index >= ether_transmit_bufptr) {
163 ((ether_transmit_index - ether_transmit_bufptr) %
167 ((ether_transmit_bufptr - ether_transmit_index) %
170 //printf("find_tx_free_slot_count_fn: %lu, case1?: %d\n", nr_free, ether_transmit_index >= ether_transmit_bufptr);
177 if(ether_transmit_bufptr == ether_transmit_index) {
/barrelfish-master/usr/drivers/e1000/
H A De1000n.h221 uint32_t ether_transmit_index; member in struct:e1000_driver_state

Completed in 46 milliseconds