Lines Matching refs:tx_desc

295 	union ixgbe_adv_tx_desc *tx_desc;  in ixgbevf_clean_tx_irq()  local
304 tx_desc = IXGBEVF_TX_DESC(tx_ring, i); in ixgbevf_clean_tx_irq()
342 while (tx_desc != eop_desc) { in ixgbevf_clean_tx_irq()
344 tx_desc++; in ixgbevf_clean_tx_irq()
349 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_clean_tx_irq()
364 tx_desc++; in ixgbevf_clean_tx_irq()
369 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_clean_tx_irq()
373 prefetch(tx_desc); in ixgbevf_clean_tx_irq()
3432 static void ixgbevf_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc, in ixgbevf_tx_olinfo_status() argument
3454 tx_desc->read.olinfo_status = olinfo_status; in ixgbevf_tx_olinfo_status()
3464 union ixgbe_adv_tx_desc *tx_desc; in ixgbevf_tx_map() local
3473 tx_desc = IXGBEVF_TX_DESC(tx_ring, i); in ixgbevf_tx_map()
3475 ixgbevf_tx_olinfo_status(tx_desc, tx_flags, paylen); in ixgbevf_tx_map()
3486 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3490 tx_desc->read.cmd_type_len = in ixgbevf_tx_map()
3494 tx_desc++; in ixgbevf_tx_map()
3496 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_tx_map()
3503 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3504 tx_desc->read.olinfo_status = 0; in ixgbevf_tx_map()
3510 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size); in ixgbevf_tx_map()
3513 tx_desc++; in ixgbevf_tx_map()
3515 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_tx_map()
3531 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3532 tx_desc->read.olinfo_status = 0; in ixgbevf_tx_map()
3539 tx_desc->read.cmd_type_len = cmd_type; in ixgbevf_tx_map()
3554 first->next_to_watch = tx_desc; in ixgbevf_tx_map()