Checking return value of rte_memzone_free() is pointless
and if it failed then it was because the pointer was null.

Fixes: 7b1374b1e6e7 ("common/qat: limit configuration to primary process")
Cc: arkadiuszx.kusz...@intel.com

Signed-off-by: Stephen Hemminger <step...@networkplumber.org>
---
 drivers/common/qat/qat_device.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/common/qat/qat_device.c b/drivers/common/qat/qat_device.c
index 4a972a83bd..bca88fd9bd 100644
--- a/drivers/common/qat/qat_device.c
+++ b/drivers/common/qat/qat_device.c
@@ -390,11 +390,7 @@ qat_pci_device_allocate(struct rte_pci_device *pci_dev)
        return qat_dev;
 error:
        rte_free(qat_dev->command_line);
-       if (rte_memzone_free(qat_dev_mz)) {
-               QAT_LOG(DEBUG,
-                       "QAT internal error! Trying to free already allocated 
memzone: %s",
-                       qat_dev_mz->name);
-       }
+       rte_memzone_free(qat_dev_mz);
        return NULL;
 }
 
-- 
2.45.2

Reply via email to