raw/dpaa2_qdma: remove datapath checks for lcore ID
authorNipun Gupta <nipun.gupta@nxp.com>
Wed, 6 Oct 2021 17:01:30 +0000 (22:31 +0530)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 7 Oct 2021 12:47:35 +0000 (14:47 +0200)
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.gupta@nxp.com>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
drivers/raw/dpaa2_qdma/dpaa2_qdma.c

index e45412e..de26d2a 100644 (file)
@@ -1391,13 +1391,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);
@@ -1430,13 +1423,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;