* t4_mgmt_tx - send a management message * @q: the control queue * @mbuf: the packet containing the management message * * Send a management message through control queue. */
| 1357 | * Send a management message through control queue. |
| 1358 | */ |
| 1359 | int t4_mgmt_tx(struct sge_ctrl_txq *q, struct rte_mbuf *mbuf) |
| 1360 | { |
| 1361 | return ctrl_xmit(q, mbuf); |
| 1362 | } |
| 1363 | |
| 1364 | /** |
| 1365 | * alloc_ring - allocate resources for an SGE descriptor ring |
no test coverage detected