On 1/12/23 20:36, Hernan Vargas wrote:
Mempool not strictly required to be present in op for processing.
Previous criteria too strict. No functional impact.

Signed-off-by: Hernan Vargas <hernan.var...@intel.com>
---
  drivers/baseband/acc/rte_acc100_pmd.c | 9 ---------
  1 file changed, 9 deletions(-)

diff --git a/drivers/baseband/acc/rte_acc100_pmd.c 
b/drivers/baseband/acc/rte_acc100_pmd.c
index d3aaeb8f2c..0992cb5d1e 100644
--- a/drivers/baseband/acc/rte_acc100_pmd.c
+++ b/drivers/baseband/acc/rte_acc100_pmd.c
@@ -8,7 +8,6 @@
  #include <rte_log.h>
  #include <dev_driver.h>
  #include <rte_malloc.h>
-#include <rte_mempool.h>
  #include <rte_byteorder.h>
  #include <rte_errno.h>
  #include <rte_branch_prediction.h>
@@ -1830,10 +1829,6 @@ validate_enc_op(struct rte_bbdev_enc_op *op, struct 
acc_queue *q)
        if (!validate_op_required(q))
                return 0;
- if (op->mempool == NULL) {
-               rte_bbdev_log(ERR, "Invalid mempool pointer");
-               return -1;
-       }
        if (turbo_enc->input.data == NULL) {
                rte_bbdev_log(ERR, "Invalid input pointer");
                return -1;
@@ -2677,10 +2672,6 @@ validate_dec_op(struct rte_bbdev_dec_op *op, struct 
acc_queue *q)
        if (!validate_op_required(q))
                return 0;
- if (op->mempool == NULL) {
-               rte_bbdev_log(ERR, "Invalid mempool pointer");
-               return -1;
-       }
        if (turbo_dec->input.data == NULL) {
                rte_bbdev_log(ERR, "Invalid input pointer");
                return -1;

Reviewed-by: Maxime Coquelin <maxime.coque...@redhat.com>

Thanks,
Maxime

Reply via email to