Home
last modified time | relevance | path

Searched refs:tx_last (Results 1 – 10 of 10) sorted by relevance

/Linux-v5.4/drivers/net/ethernet/aeroflex/
Dgreth.c187 struct sk_buff *skb = greth->tx_skbuff[greth->tx_last]; in greth_clean_rings()
189 tx_bdp = greth->tx_bd_base + greth->tx_last; in greth_clean_rings()
190 greth->tx_last = NEXT_TX(greth->tx_last); in greth_clean_rings()
199 tx_bdp = greth->tx_bd_base + greth->tx_last; in greth_clean_rings()
206 greth->tx_last = NEXT_TX(greth->tx_last); in greth_clean_rings()
324 greth->tx_last = 0; in greth_init_rings()
453 static inline u16 greth_num_free_bds(u16 tx_last, u16 tx_next) in greth_num_free_bds() argument
455 if (tx_next < tx_last) in greth_num_free_bds()
456 return (tx_last - tx_next) - 1; in greth_num_free_bds()
458 return GRETH_TXBD_NUM - (tx_next - tx_last) - 1; in greth_num_free_bds()
[all …]
Dgreth.h110 u16 tx_last; member
/Linux-v5.4/drivers/tty/
Dn_r3964.c242 if (pInfo->tx_last == NULL) { in add_tx_queue()
243 pInfo->tx_first = pInfo->tx_last = pHeader; in add_tx_queue()
245 pInfo->tx_last->next = pHeader; in add_tx_queue()
246 pInfo->tx_last = pHeader; in add_tx_queue()
291 pInfo->tx_last = NULL; in remove_from_tx_queue()
300 pInfo->tx_first, pInfo->tx_last); in remove_from_tx_queue()
990 pInfo->tx_first = pInfo->tx_last = NULL; in r3964_open()
1043 pInfo->tx_first = pInfo->tx_last = NULL; in r3964_close()
/Linux-v5.4/include/linux/
Dn_r3964.h158 struct r3964_block_header *tx_last; member
/Linux-v5.4/drivers/atm/
Dhorizon.h412 u8 tx_last; member
Dhorizon.c1651 tx_channel = dev->tx_last; in hrz_send()
1675 dev->tx_last = tx_channel; in hrz_send()
2501 dev->tx_last = -1; in hrz_close()
2732 dev->tx_last = -1; in hrz_probe()
/Linux-v5.4/drivers/net/wireless/ath/ath9k/
Dbeacon.c25 sc->beacon.tx_last = false; in ath9k_reset_beacon_status()
Dath9k.h713 bool tx_last; member
Dmain.c2173 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK); in ath9k_tx_last_beacon()
2179 return sc->beacon.tx_last; in ath9k_tx_last_beacon()
Dxmit.c2669 sc->beacon.tx_last = !(ts.ts_status & ATH9K_TXERR_MASK); in ath_tx_edma_tasklet()