Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright 2017 6WIND S.A.
3 : : * Copyright 2017 Mellanox Technologies, Ltd
4 : : */
5 : :
6 : : /**
7 : : * @file
8 : : * Tx queues configuration for mlx4 driver.
9 : : */
10 : :
11 : : #include <errno.h>
12 : : #include <stddef.h>
13 : : #include <stdint.h>
14 : : #include <string.h>
15 : : #include <sys/mman.h>
16 : : #include <inttypes.h>
17 : : #include <unistd.h>
18 : :
19 : : /* Verbs headers do not support -pedantic. */
20 : : #ifdef PEDANTIC
21 : : #pragma GCC diagnostic ignored "-Wpedantic"
22 : : #endif
23 : : #include <infiniband/verbs.h>
24 : : #ifdef PEDANTIC
25 : : #pragma GCC diagnostic error "-Wpedantic"
26 : : #endif
27 : :
28 : : #include <rte_common.h>
29 : : #include <rte_errno.h>
30 : : #include <ethdev_driver.h>
31 : : #include <rte_malloc.h>
32 : : #include <rte_mbuf.h>
33 : : #include <rte_mempool.h>
34 : :
35 : : #include "mlx4.h"
36 : : #include "mlx4_glue.h"
37 : : #include "mlx4_prm.h"
38 : : #include "mlx4_rxtx.h"
39 : : #include "mlx4_utils.h"
40 : :
41 : : /**
42 : : * Initialize Tx UAR registers for primary process.
43 : : *
44 : : * @param txq
45 : : * Pointer to Tx queue structure.
46 : : */
47 : : static void
48 : : txq_uar_init(struct txq *txq)
49 : : {
50 : 0 : struct mlx4_priv *priv = txq->priv;
51 : 0 : struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(priv));
52 : :
53 : : MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
54 : : MLX4_ASSERT(ppriv);
55 : 0 : ppriv->uar_table[txq->stats.idx] = txq->msq.db;
56 : : }
57 : :
58 : : #ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
59 : : /**
60 : : * Remap UAR register of a Tx queue for secondary process.
61 : : *
62 : : * Remapped address is stored at the table in the process private structure of
63 : : * the device, indexed by queue index.
64 : : *
65 : : * @param txq
66 : : * Pointer to Tx queue structure.
67 : : * @param fd
68 : : * Verbs file descriptor to map UAR pages.
69 : : *
70 : : * @return
71 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
72 : : */
73 : : static int
74 : 0 : txq_uar_init_secondary(struct txq *txq, int fd)
75 : : {
76 : 0 : struct mlx4_priv *priv = txq->priv;
77 : 0 : struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(priv));
78 : : void *addr;
79 : : uintptr_t uar_va;
80 : : uintptr_t offset;
81 : 0 : const size_t page_size = sysconf(_SC_PAGESIZE);
82 : :
83 : : MLX4_ASSERT(ppriv);
84 : : /*
85 : : * As rdma-core, UARs are mapped in size of OS page
86 : : * size. Ref to libmlx4 function: mlx4_init_context()
87 : : */
88 : 0 : uar_va = (uintptr_t)txq->msq.db;
89 : 0 : offset = uar_va & (page_size - 1); /* Offset in page. */
90 : 0 : addr = mmap(NULL, page_size, PROT_WRITE, MAP_SHARED, fd,
91 : : txq->msq.uar_mmap_offset);
92 [ # # ]: 0 : if (addr == MAP_FAILED) {
93 : 0 : ERROR("port %u mmap failed for BF reg of txq %u",
94 : : txq->port_id, txq->stats.idx);
95 : 0 : rte_errno = ENXIO;
96 : 0 : return -rte_errno;
97 : : }
98 : 0 : addr = RTE_PTR_ADD(addr, offset);
99 : 0 : ppriv->uar_table[txq->stats.idx] = addr;
100 : 0 : return 0;
101 : : }
102 : :
103 : : /**
104 : : * Unmap UAR register of a Tx queue for secondary process.
105 : : *
106 : : * @param txq
107 : : * Pointer to Tx queue structure.
108 : : */
109 : : static void
110 : 0 : txq_uar_uninit_secondary(struct txq *txq)
111 : : {
112 : 0 : struct mlx4_proc_priv *ppriv = MLX4_PROC_PRIV(PORT_ID(txq->priv));
113 : 0 : const size_t page_size = sysconf(_SC_PAGESIZE);
114 : : void *addr;
115 : :
116 : 0 : addr = ppriv->uar_table[txq->stats.idx];
117 : 0 : munmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
118 : 0 : }
119 : :
120 : : /**
121 : : * Initialize Tx UAR registers for secondary process.
122 : : *
123 : : * @param dev
124 : : * Pointer to Ethernet device.
125 : : * @param fd
126 : : * Verbs file descriptor to map UAR pages.
127 : : *
128 : : * @return
129 : : * 0 on success, a negative errno value otherwise and rte_errno is set.
130 : : */
131 : : int
132 : 0 : mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev, int fd)
133 : : {
134 : 0 : const unsigned int txqs_n = dev->data->nb_tx_queues;
135 : : struct txq *txq;
136 : : unsigned int i;
137 : : int ret;
138 : :
139 : : MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
140 [ # # ]: 0 : for (i = 0; i != txqs_n; ++i) {
141 : 0 : txq = dev->data->tx_queues[i];
142 [ # # ]: 0 : if (!txq)
143 : 0 : continue;
144 : : MLX4_ASSERT(txq->stats.idx == (uint16_t)i);
145 : 0 : ret = txq_uar_init_secondary(txq, fd);
146 [ # # ]: 0 : if (ret)
147 : 0 : goto error;
148 : : }
149 : : return 0;
150 : : error:
151 : : /* Rollback. */
152 : : do {
153 : 0 : txq = dev->data->tx_queues[i];
154 [ # # ]: 0 : if (!txq)
155 : 0 : continue;
156 : 0 : txq_uar_uninit_secondary(txq);
157 [ # # ]: 0 : } while (i--);
158 : 0 : return -rte_errno;
159 : : }
160 : :
161 : : void
162 : 0 : mlx4_tx_uar_uninit_secondary(struct rte_eth_dev *dev)
163 : : {
164 : 0 : struct mlx4_proc_priv *ppriv =
165 : : (struct mlx4_proc_priv *)dev->process_private;
166 : 0 : const size_t page_size = sysconf(_SC_PAGESIZE);
167 : : void *addr;
168 : : size_t i;
169 : :
170 [ # # ]: 0 : if (page_size == (size_t)-1) {
171 : 0 : ERROR("Failed to get mem page size");
172 : 0 : return;
173 : : }
174 [ # # ]: 0 : for (i = 0; i < ppriv->uar_table_sz; i++) {
175 : 0 : addr = ppriv->uar_table[i];
176 [ # # ]: 0 : if (addr)
177 : 0 : munmap(RTE_PTR_ALIGN_FLOOR(addr, page_size), page_size);
178 : : }
179 : : }
180 : :
181 : : #else
182 : : int
183 : : mlx4_tx_uar_init_secondary(struct rte_eth_dev *dev __rte_unused,
184 : : int fd __rte_unused)
185 : : {
186 : : MLX4_ASSERT(rte_eal_process_type() == RTE_PROC_SECONDARY);
187 : : ERROR("UAR remap is not supported");
188 : : rte_errno = ENOTSUP;
189 : : return -rte_errno;
190 : : }
191 : :
192 : : void
193 : : mlx4_tx_uar_uninit_secondary(struct rte_eth_dev *dev __rte_unused)
194 : : {
195 : : assert(rte_eal_process_type() == RTE_PROC_SECONDARY);
196 : : ERROR("UAR remap is not supported");
197 : : }
198 : : #endif
199 : :
200 : : /**
201 : : * Free Tx queue elements.
202 : : *
203 : : * @param txq
204 : : * Pointer to Tx queue structure.
205 : : */
206 : : static void
207 : 0 : mlx4_txq_free_elts(struct txq *txq)
208 : : {
209 : 0 : struct txq_elt (*elts)[txq->elts_n] = txq->elts;
210 : : unsigned int n = txq->elts_n;
211 : :
212 : 0 : DEBUG("%p: freeing WRs, %u", (void *)txq, n);
213 [ # # ]: 0 : while (n--) {
214 : : struct txq_elt *elt = &(*elts)[n];
215 : :
216 [ # # ]: 0 : if (elt->buf) {
217 : 0 : rte_pktmbuf_free(elt->buf);
218 : 0 : elt->buf = NULL;
219 : 0 : elt->wqe = NULL;
220 : : }
221 : : }
222 : 0 : txq->elts_tail = txq->elts_head;
223 : 0 : }
224 : :
225 : : /**
226 : : * Retrieves information needed in order to directly access the Tx queue.
227 : : *
228 : : * @param txq
229 : : * Pointer to Tx queue structure.
230 : : * @param mlxdv
231 : : * Pointer to device information for this Tx queue.
232 : : */
233 : : static void
234 : 0 : mlx4_txq_fill_dv_obj_info(struct txq *txq, struct mlx4dv_obj *mlxdv)
235 : : {
236 : : struct mlx4_sq *sq = &txq->msq;
237 : : struct mlx4_cq *cq = &txq->mcq;
238 : 0 : struct mlx4dv_qp *dqp = mlxdv->qp.out;
239 : 0 : struct mlx4dv_cq *dcq = mlxdv->cq.out;
240 : :
241 : : /* Total length, including headroom and spare WQEs. */
242 : 0 : sq->size = (uint32_t)dqp->rq.offset - (uint32_t)dqp->sq.offset;
243 : 0 : sq->buf = (uint8_t *)dqp->buf.buf + dqp->sq.offset;
244 : 0 : sq->eob = sq->buf + sq->size;
245 : 0 : uint32_t headroom_size = 2048 + (1 << dqp->sq.wqe_shift);
246 : : /* Continuous headroom size bytes must always stay freed. */
247 : 0 : sq->remain_size = sq->size - headroom_size;
248 : 0 : sq->owner_opcode = MLX4_OPCODE_SEND | (0u << MLX4_SQ_OWNER_BIT);
249 : 0 : sq->stamp = rte_cpu_to_be_32(MLX4_SQ_STAMP_VAL |
250 : : (0u << MLX4_SQ_OWNER_BIT));
251 : : #ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
252 : 0 : sq->uar_mmap_offset = dqp->uar_mmap_offset;
253 : : #else
254 : : sq->uar_mmap_offset = -1; /* Make mmap() fail. */
255 : : #endif
256 : 0 : sq->db = dqp->sdb;
257 : 0 : sq->doorbell_qpn = dqp->doorbell_qpn;
258 : 0 : cq->buf = dcq->buf.buf;
259 : 0 : cq->cqe_cnt = dcq->cqe_cnt;
260 : 0 : cq->set_ci_db = dcq->set_ci_db;
261 : 0 : cq->cqe_64 = (dcq->cqe_size & 64) ? 1 : 0;
262 : 0 : }
263 : :
264 : : /**
265 : : * Returns the per-port supported offloads.
266 : : *
267 : : * @param priv
268 : : * Pointer to private structure.
269 : : *
270 : : * @return
271 : : * Supported Tx offloads.
272 : : */
273 : : uint64_t
274 : 0 : mlx4_get_tx_port_offloads(struct mlx4_priv *priv)
275 : : {
276 : : uint64_t offloads = RTE_ETH_TX_OFFLOAD_MULTI_SEGS;
277 : :
278 [ # # ]: 0 : if (priv->hw_csum) {
279 : : offloads |= (RTE_ETH_TX_OFFLOAD_IPV4_CKSUM |
280 : : RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
281 : : RTE_ETH_TX_OFFLOAD_TCP_CKSUM);
282 : : }
283 [ # # ]: 0 : if (priv->tso)
284 : 0 : offloads |= RTE_ETH_TX_OFFLOAD_TCP_TSO;
285 [ # # ]: 0 : if (priv->hw_csum_l2tun) {
286 : 0 : offloads |= RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM;
287 [ # # ]: 0 : if (priv->tso)
288 : 0 : offloads |= (RTE_ETH_TX_OFFLOAD_VXLAN_TNL_TSO |
289 : : RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO);
290 : : }
291 : 0 : return offloads;
292 : : }
293 : :
294 : : /**
295 : : * DPDK callback to configure a Tx queue.
296 : : *
297 : : * @param dev
298 : : * Pointer to Ethernet device structure.
299 : : * @param idx
300 : : * Tx queue index.
301 : : * @param desc
302 : : * Number of descriptors to configure in queue.
303 : : * @param socket
304 : : * NUMA socket on which memory must be allocated.
305 : : * @param[in] conf
306 : : * Thresholds parameters.
307 : : *
308 : : * @return
309 : : * 0 on success, negative errno value otherwise and rte_errno is set.
310 : : */
311 : : int
312 : 0 : mlx4_tx_queue_setup(struct rte_eth_dev *dev, uint16_t idx, uint16_t desc,
313 : : unsigned int socket, const struct rte_eth_txconf *conf)
314 : : {
315 : 0 : struct mlx4_priv *priv = dev->data->dev_private;
316 : : struct mlx4dv_obj mlxdv;
317 : : struct mlx4dv_qp dv_qp;
318 : : struct mlx4dv_cq dv_cq;
319 : 0 : struct txq_elt (*elts)[rte_align32pow2(desc)];
320 : : struct ibv_qp_init_attr qp_init_attr;
321 : : struct txq *txq;
322 : : uint8_t *bounce_buf;
323 : 0 : struct mlx4_malloc_vec vec[] = {
324 : : {
325 : : .align = RTE_CACHE_LINE_SIZE,
326 : : .size = sizeof(*txq),
327 : : .addr = (void **)&txq,
328 : : },
329 : : {
330 : : .align = RTE_CACHE_LINE_SIZE,
331 : : .size = sizeof(*elts),
332 : : .addr = (void **)&elts,
333 : : },
334 : : {
335 : : .align = RTE_CACHE_LINE_SIZE,
336 : : .size = MLX4_MAX_WQE_SIZE,
337 : : .addr = (void **)&bounce_buf,
338 : : },
339 : : };
340 : : int ret;
341 : : uint64_t offloads;
342 : :
343 : 0 : offloads = conf->offloads | dev->data->dev_conf.txmode.offloads;
344 : 0 : DEBUG("%p: configuring queue %u for %u descriptors",
345 : : (void *)dev, idx, desc);
346 [ # # ]: 0 : if (idx >= dev->data->nb_tx_queues) {
347 : 0 : rte_errno = EOVERFLOW;
348 : 0 : ERROR("%p: queue index out of range (%u >= %u)",
349 : : (void *)dev, idx, dev->data->nb_tx_queues);
350 : 0 : return -rte_errno;
351 : : }
352 : 0 : txq = dev->data->tx_queues[idx];
353 [ # # ]: 0 : if (txq) {
354 : 0 : rte_errno = EEXIST;
355 : 0 : DEBUG("%p: Tx queue %u already configured, release it first",
356 : : (void *)dev, idx);
357 : 0 : return -rte_errno;
358 : : }
359 [ # # ]: 0 : if (!desc) {
360 : 0 : rte_errno = EINVAL;
361 : 0 : ERROR("%p: invalid number of Tx descriptors", (void *)dev);
362 : 0 : return -rte_errno;
363 : : }
364 [ # # ]: 0 : if (desc != RTE_DIM(*elts)) {
365 : 0 : desc = RTE_DIM(*elts);
366 : 0 : WARN("%p: increased number of descriptors in Tx queue %u"
367 : : " to the next power of two (%u)",
368 : : (void *)dev, idx, desc);
369 : : }
370 : : /* Allocate and initialize Tx queue. */
371 : 0 : mlx4_zmallocv_socket("TXQ", vec, RTE_DIM(vec), socket);
372 [ # # ]: 0 : if (!txq) {
373 : 0 : ERROR("%p: unable to allocate queue index %u",
374 : : (void *)dev, idx);
375 : 0 : return -rte_errno;
376 : : }
377 : 0 : *txq = (struct txq){
378 : : .priv = priv,
379 : 0 : .port_id = dev->data->port_id,
380 : : .stats = {
381 : : .idx = idx,
382 : : },
383 : : .socket = socket,
384 : : .elts_n = desc,
385 : : .elts = elts,
386 : : .elts_head = 0,
387 : : .elts_tail = 0,
388 : : /*
389 : : * Request send completion every MLX4_PMD_TX_PER_COMP_REQ
390 : : * packets or at least 4 times per ring.
391 : : */
392 : : .elts_comp_cd =
393 : 0 : RTE_MIN(MLX4_PMD_TX_PER_COMP_REQ, desc / 4),
394 : : .elts_comp_cd_init =
395 : 0 : RTE_MIN(MLX4_PMD_TX_PER_COMP_REQ, desc / 4),
396 [ # # ]: 0 : .csum = priv->hw_csum &&
397 [ # # ]: 0 : (offloads & (RTE_ETH_TX_OFFLOAD_IPV4_CKSUM |
398 : : RTE_ETH_TX_OFFLOAD_UDP_CKSUM |
399 : : RTE_ETH_TX_OFFLOAD_TCP_CKSUM)),
400 [ # # ]: 0 : .csum_l2tun = priv->hw_csum_l2tun &&
401 [ # # ]: 0 : (offloads &
402 : : RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM),
403 : : /* Enable Tx loopback for VF devices. */
404 : 0 : .lb = !!priv->vf,
405 : : .bounce_buf = bounce_buf,
406 : : };
407 : 0 : dev->data->tx_queues[idx] = txq;
408 : 0 : priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_TX_QUEUE;
409 : 0 : priv->verbs_alloc_ctx.obj = txq;
410 : 0 : txq->cq = mlx4_glue->create_cq(priv->ctx, desc, NULL, NULL, 0);
411 [ # # ]: 0 : if (!txq->cq) {
412 : 0 : rte_errno = ENOMEM;
413 : 0 : ERROR("%p: CQ creation failure: %s",
414 : : (void *)dev, strerror(rte_errno));
415 : 0 : goto error;
416 : : }
417 : 0 : qp_init_attr = (struct ibv_qp_init_attr){
418 : : .send_cq = txq->cq,
419 : : .recv_cq = txq->cq,
420 : : .cap = {
421 : : .max_send_wr =
422 : 0 : RTE_MIN(priv->device_attr.max_qp_wr, desc),
423 : : .max_send_sge = 1,
424 : : .max_inline_data = MLX4_PMD_MAX_INLINE,
425 : : },
426 : : .qp_type = IBV_QPT_RAW_PACKET,
427 : : /* No completion events must occur by default. */
428 : : .sq_sig_all = 0,
429 : : };
430 : 0 : txq->qp = mlx4_glue->create_qp(priv->pd, &qp_init_attr);
431 [ # # ]: 0 : if (!txq->qp) {
432 [ # # ]: 0 : rte_errno = errno ? errno : EINVAL;
433 : 0 : ERROR("%p: QP creation failure: %s",
434 : : (void *)dev, strerror(rte_errno));
435 : 0 : goto error;
436 : : }
437 : 0 : txq->max_inline = qp_init_attr.cap.max_inline_data;
438 : 0 : ret = mlx4_glue->modify_qp
439 : : (txq->qp,
440 : 0 : &(struct ibv_qp_attr){
441 : : .qp_state = IBV_QPS_INIT,
442 : 0 : .port_num = priv->port,
443 : : },
444 : : IBV_QP_STATE | IBV_QP_PORT);
445 [ # # ]: 0 : if (ret) {
446 : 0 : rte_errno = ret;
447 : 0 : ERROR("%p: QP state to IBV_QPS_INIT failed: %s",
448 : : (void *)dev, strerror(rte_errno));
449 : 0 : goto error;
450 : : }
451 : 0 : ret = mlx4_glue->modify_qp
452 : 0 : (txq->qp,
453 : 0 : &(struct ibv_qp_attr){
454 : : .qp_state = IBV_QPS_RTR,
455 : : },
456 : : IBV_QP_STATE);
457 [ # # ]: 0 : if (ret) {
458 : 0 : rte_errno = ret;
459 : 0 : ERROR("%p: QP state to IBV_QPS_RTR failed: %s",
460 : : (void *)dev, strerror(rte_errno));
461 : 0 : goto error;
462 : : }
463 : 0 : ret = mlx4_glue->modify_qp
464 : 0 : (txq->qp,
465 : 0 : &(struct ibv_qp_attr){
466 : : .qp_state = IBV_QPS_RTS,
467 : : },
468 : : IBV_QP_STATE);
469 [ # # ]: 0 : if (ret) {
470 : 0 : rte_errno = ret;
471 : 0 : ERROR("%p: QP state to IBV_QPS_RTS failed: %s",
472 : : (void *)dev, strerror(rte_errno));
473 : 0 : goto error;
474 : : }
475 : : /* Retrieve device queue information. */
476 : : #ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
477 : 0 : dv_qp = (struct mlx4dv_qp){
478 : : .comp_mask = MLX4DV_QP_MASK_UAR_MMAP_OFFSET,
479 : : };
480 : : #endif
481 : 0 : mlxdv.cq.in = txq->cq;
482 : 0 : mlxdv.cq.out = &dv_cq;
483 : 0 : mlxdv.qp.in = txq->qp;
484 : 0 : mlxdv.qp.out = &dv_qp;
485 : 0 : ret = mlx4_glue->dv_init_obj(&mlxdv, MLX4DV_OBJ_QP | MLX4DV_OBJ_CQ);
486 [ # # ]: 0 : if (ret) {
487 : 0 : rte_errno = EINVAL;
488 : 0 : ERROR("%p: failed to obtain information needed for"
489 : : " accessing the device queues", (void *)dev);
490 : 0 : goto error;
491 : : }
492 : : #ifdef HAVE_IBV_MLX4_UAR_MMAP_OFFSET
493 [ # # ]: 0 : if (!(dv_qp.comp_mask & MLX4DV_QP_MASK_UAR_MMAP_OFFSET)) {
494 : 0 : WARN("%p: failed to obtain UAR mmap offset", (void *)dev);
495 : 0 : dv_qp.uar_mmap_offset = -1; /* Make mmap() fail. */
496 : : }
497 : : #endif
498 : 0 : mlx4_txq_fill_dv_obj_info(txq, &mlxdv);
499 : : txq_uar_init(txq);
500 : : /* Save first wqe pointer in the first element. */
501 : 0 : (&(*txq->elts)[0])->wqe =
502 : 0 : (volatile struct mlx4_wqe_ctrl_seg *)txq->msq.buf;
503 [ # # ]: 0 : if (mlx4_mr_btree_init(&txq->mr_ctrl.cache_bh,
504 : : MLX4_MR_BTREE_CACHE_N, socket)) {
505 : : /* rte_errno is already set. */
506 : 0 : goto error;
507 : : }
508 : : /* Save pointer of global generation number to check memory event. */
509 : 0 : txq->mr_ctrl.dev_gen_ptr = &priv->mr.dev_gen;
510 : 0 : DEBUG("%p: adding Tx queue %p to list", (void *)dev, (void *)txq);
511 : 0 : priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
512 : 0 : return 0;
513 : 0 : error:
514 : 0 : ret = rte_errno;
515 : 0 : mlx4_tx_queue_release(dev, idx);
516 : 0 : rte_errno = ret;
517 : : MLX4_ASSERT(rte_errno > 0);
518 : 0 : priv->verbs_alloc_ctx.type = MLX4_VERBS_ALLOC_TYPE_NONE;
519 : 0 : return -rte_errno;
520 : : }
521 : :
522 : : /**
523 : : * DPDK callback to release a Tx queue.
524 : : *
525 : : * @param dev
526 : : * Pointer to Ethernet device structure.
527 : : * @param idx
528 : : * Transmit queue index.
529 : : */
530 : : void
531 : 0 : mlx4_tx_queue_release(struct rte_eth_dev *dev, uint16_t idx)
532 : : {
533 : 0 : struct txq *txq = dev->data->tx_queues[idx];
534 : :
535 [ # # ]: 0 : if (txq == NULL)
536 : : return;
537 : 0 : DEBUG("%p: removing Tx queue %hu from list", (void *)dev, idx);
538 : 0 : dev->data->tx_queues[idx] = NULL;
539 : 0 : mlx4_txq_free_elts(txq);
540 [ # # ]: 0 : if (txq->qp)
541 : 0 : claim_zero(mlx4_glue->destroy_qp(txq->qp));
542 [ # # ]: 0 : if (txq->cq)
543 : 0 : claim_zero(mlx4_glue->destroy_cq(txq->cq));
544 : 0 : mlx4_mr_btree_free(&txq->mr_ctrl.cache_bh);
545 : 0 : rte_free(txq);
546 : : }
|