Home
last modified time | relevance | path

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

/linux-2.4.37.9/drivers/net/
Dtyphoon.c543 typhoon_num_free(int lastWrite, int lastRead, int ringSize) in typhoon_num_free() argument
549 lastRead /= sizeof(struct cmd_desc); in typhoon_num_free()
550 return (ringSize + lastRead - lastWrite - 1) % ringSize; in typhoon_num_free()
575 return typhoon_num_free(ring->lastWrite, ring->lastRead, TXLO_ENTRIES); in typhoon_num_free_tx()
1350 tp->txLoRing.lastRead = 0; in typhoon_init_rings()
1351 tp->txHiRing.lastRead = 0; in typhoon_init_rings()
1542 u32 lastRead = txRing->lastRead; in typhoon_clean_tx() local
1548 while(lastRead != le32_to_cpu(*index)) { in typhoon_clean_tx()
1549 tx = (struct tx_desc *) (txRing->ringBase + lastRead); in typhoon_clean_tx()
1568 typhoon_inc_tx_index(&lastRead, 1); in typhoon_clean_tx()
[all …]
Dtyphoon.h43 u32 lastRead; member