* Ring TX queue doorbell and flush the update by write memory barrier. * * @param txq * Pointer to TX queue structure. * @param wqe * Pointer to the last WQE posted in the NIC. */
| 306 | * Pointer to the last WQE posted in the NIC. |
| 307 | */ |
| 308 | static __rte_always_inline void |
| 309 | mlx5_tx_dbrec(struct mlx5_txq_data *txq, volatile struct mlx5_wqe *wqe) |
| 310 | { |
| 311 | mlx5_doorbell_ring(mlx5_tx_bfreg(txq), *(volatile uint64_t *)wqe, |
| 312 | txq->wqe_ci, txq->qp_db, 1); |
| 313 | } |
| 314 | |
| 315 | /** |
| 316 | * Convert timestamp from mbuf format to linear counter |
nothing calls this directly
no test coverage detected