| 145 | } |
| 146 | |
| 147 | static void |
| 148 | mlx5_txpp_destroy_clock_queue(struct mlx5_dev_ctx_shared *sh) |
| 149 | { |
| 150 | struct mlx5_txpp_wq *wq = &sh->txpp.clock_queue; |
| 151 | |
| 152 | mlx5_txpp_destroy_send_queue(wq); |
| 153 | if (sh->txpp.tsa) { |
| 154 | mlx5_free(sh->txpp.tsa); |
| 155 | sh->txpp.tsa = NULL; |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | static void |
| 160 | mlx5_txpp_doorbell_rearm_queue(struct mlx5_dev_ctx_shared *sh, uint16_t ci) |
no test coverage detected