From: Nipun Gupta <nipun.gu...@nxp.com>

There is no need for preventional check of rte_lcore_id() in
data path. This patch removes the same.

Signed-off-by: Nipun Gupta <nipun.gu...@nxp.com>
---
 drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c 
b/drivers/raw/dpaa2_qdma/dpaa2_qdma.c
index 2048c2c514..807a3694cd 100644
--- a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c
+++ b/drivers/raw/dpaa2_qdma/dpaa2_qdma.c
@@ -1389,13 +1389,6 @@ dpaa2_qdma_enqueue(struct rte_rawdev *rawdev,
                &dpdmai_dev->qdma_dev->vqs[e_context->vq_id];
        int ret;
 
-       /* Return error in case of wrong lcore_id */
-       if (rte_lcore_id() != qdma_vq->lcore_id) {
-               DPAA2_QDMA_ERR("QDMA enqueue for vqid %d on wrong core",
-                               e_context->vq_id);
-               return -EINVAL;
-       }
-
        ret = qdma_vq->enqueue_job(qdma_vq, e_context->job, nb_jobs);
        if (ret < 0) {
                DPAA2_QDMA_ERR("DPDMAI device enqueue failed: %d", ret);
@@ -1428,13 +1421,6 @@ dpaa2_qdma_dequeue(struct rte_rawdev *rawdev,
                        return -EINVAL;
        }
 
-       /* Return error in case of wrong lcore_id */
-       if (rte_lcore_id() != (unsigned int)(qdma_vq->lcore_id)) {
-               DPAA2_QDMA_WARN("QDMA dequeue for vqid %d on wrong core",
-                               context->vq_id);
-               return -1;
-       }
-
        /* Only dequeue when there are pending jobs on VQ */
        if (qdma_vq->num_enqueues == qdma_vq->num_dequeues)
                return 0;
-- 
2.17.1

Reply via email to