drivers: enhance DPAA2 portal allocation error logs
Update the portal allocation failure log to print the thread id as well. Signed-off-by: Nipun Gupta <nipun.gupta@nxp.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
e35ead3379
commit
d527f5d9bb
@ -1460,7 +1460,9 @@ dpaa2_sec_enqueue_burst(void *qp, struct rte_crypto_op **ops,
|
||||
if (!DPAA2_PER_LCORE_DPIO) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_SEC_ERR("Failure in affining portal");
|
||||
DPAA2_SEC_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -1642,7 +1644,9 @@ dpaa2_sec_dequeue_burst(void *qp, struct rte_crypto_op **ops,
|
||||
if (!DPAA2_PER_LCORE_DPIO) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_SEC_ERR("Failure in affining portal");
|
||||
DPAA2_SEC_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -74,7 +74,9 @@ dpaa2_eventdev_enqueue_burst(void *port, const struct rte_event ev[],
|
||||
/* Affine current thread context to a qman portal */
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret < 0) {
|
||||
DPAA2_EVENTDEV_ERR("Failure in affining portal");
|
||||
DPAA2_EVENTDEV_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -273,7 +275,9 @@ dpaa2_eventdev_dequeue_burst(void *port, struct rte_event ev[],
|
||||
/* Affine current thread context to a qman portal */
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret < 0) {
|
||||
DPAA2_EVENTDEV_ERR("Failure in affining portal");
|
||||
DPAA2_EVENTDEV_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -69,7 +69,9 @@ rte_hw_mbuf_create_pool(struct rte_mempool *mp)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_MEMPOOL_ERR("Failure in affining portal");
|
||||
DPAA2_MEMPOOL_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
goto err1;
|
||||
}
|
||||
}
|
||||
@ -198,7 +200,9 @@ rte_dpaa2_mbuf_release(struct rte_mempool *pool __rte_unused,
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret != 0) {
|
||||
DPAA2_MEMPOOL_ERR("Failed to allocate IO portal");
|
||||
DPAA2_MEMPOOL_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -317,7 +321,9 @@ rte_dpaa2_mbuf_alloc_bulk(struct rte_mempool *pool,
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret != 0) {
|
||||
DPAA2_MEMPOOL_ERR("Failed to allocate IO portal");
|
||||
DPAA2_MEMPOOL_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
@ -896,7 +896,9 @@ dpaa2_dev_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_PMD_ERR("Failure in affining portal");
|
||||
DPAA2_PMD_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
@ -762,7 +762,9 @@ dpaa2_dev_rx(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_PMD_ERR("Failure in affining portal\n");
|
||||
DPAA2_PMD_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -882,7 +884,9 @@ uint16_t dpaa2_dev_tx_conf(void *queue)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_PMD_ERR("Failure in affining portal\n");
|
||||
DPAA2_PMD_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -1021,7 +1025,9 @@ dpaa2_dev_tx(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_PMD_ERR("Failure in affining portal");
|
||||
DPAA2_PMD_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -1282,7 +1288,9 @@ dpaa2_dev_tx_ordered(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_PMD_ERR("Failure in affining portal");
|
||||
DPAA2_PMD_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -70,7 +70,9 @@ dpaa2_cmdif_enqueue_bufs(struct rte_rawdev *dev,
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_CMDIF_ERR("Failure in affining portal\n");
|
||||
DPAA2_CMDIF_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -133,7 +135,9 @@ dpaa2_cmdif_dequeue_bufs(struct rte_rawdev *dev,
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_CMDIF_ERR("Failure in affining portal\n");
|
||||
DPAA2_CMDIF_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
@ -666,7 +666,9 @@ dpdmai_dev_enqueue_multi(struct dpaa2_dpdmai_dev *dpdmai_dev,
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_QDMA_ERR("Failure in affining portal");
|
||||
DPAA2_QDMA_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -788,7 +790,9 @@ dpdmai_dev_dequeue_multijob_prefetch(
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_QDMA_ERR("Failure in affining portal");
|
||||
DPAA2_QDMA_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
@ -929,7 +933,9 @@ dpdmai_dev_dequeue_multijob_no_prefetch(
|
||||
if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
|
||||
ret = dpaa2_affine_qbman_swp();
|
||||
if (ret) {
|
||||
DPAA2_QDMA_ERR("Failure in affining portal");
|
||||
DPAA2_QDMA_ERR(
|
||||
"Failed to allocate IO portal, tid: %d\n",
|
||||
rte_gettid());
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user