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()
3420 static void ixgbevf_tx_olinfo_status(union ixgbe_adv_tx_desc *tx_desc, in ixgbevf_tx_olinfo_status() argument
3442 tx_desc->read.olinfo_status = olinfo_status; in ixgbevf_tx_olinfo_status()
3452 union ixgbe_adv_tx_desc *tx_desc; in ixgbevf_tx_map() local
3461 tx_desc = IXGBEVF_TX_DESC(tx_ring, i); in ixgbevf_tx_map()
3463 ixgbevf_tx_olinfo_status(tx_desc, tx_flags, paylen); in ixgbevf_tx_map()
3474 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3478 tx_desc->read.cmd_type_len = in ixgbevf_tx_map()
3482 tx_desc++; in ixgbevf_tx_map()
3484 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_tx_map()
3491 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3492 tx_desc->read.olinfo_status = 0; in ixgbevf_tx_map()
3498 tx_desc->read.cmd_type_len = cmd_type | cpu_to_le32(size); in ixgbevf_tx_map()
3501 tx_desc++; in ixgbevf_tx_map()
3503 tx_desc = IXGBEVF_TX_DESC(tx_ring, 0); in ixgbevf_tx_map()
3519 tx_desc->read.buffer_addr = cpu_to_le64(dma); in ixgbevf_tx_map()
3520 tx_desc->read.olinfo_status = 0; in ixgbevf_tx_map()
3527 tx_desc->read.cmd_type_len = cmd_type; in ixgbevf_tx_map()
3542 first->next_to_watch = tx_desc; in ixgbevf_tx_map()