From: Nipun Gupta Date: Wed, 6 Oct 2021 17:01:30 +0000 (+0530) Subject: raw/dpaa2_qdma: remove datapath checks for lcore ID X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=73281ef816e9b00524325acd0cb9fc394ef08579;p=dpdk.git raw/dpaa2_qdma: remove datapath checks for lcore ID There is no need for preventional check of rte_lcore_id() in data path. This patch removes the same. Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- diff --git a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c b/drivers/raw/dpaa2_qdma/dpaa2_qdma.c index e45412e640..de26d2aef3 100644 --- a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c +++ b/drivers/raw/dpaa2_qdma/dpaa2_qdma.c @@ -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;