net/bnxt: ignore VLAN priority mask
[dpdk.git] / drivers / raw / dpaa2_cmdif / dpaa2_cmdif.c
index 469960a..c7bddbc 100644 (file)
@@ -1,5 +1,5 @@
 /* SPDX-License-Identifier: BSD-3-Clause
- * Copyright 2018 NXP
+ * Copyright 2018-2019 NXP
  */
 
 #include <stdio.h>
 #include "dpaa2_cmdif_logs.h"
 #include "rte_pmd_dpaa2_cmdif.h"
 
-/* Dynamic log type identifier */
-int dpaa2_cmdif_logtype;
-
 /* CMDIF driver name */
 #define DPAA2_CMDIF_PMD_NAME dpaa2_dpci
 
-/* CMDIF driver object */
-static struct rte_vdev_driver dpaa2_cmdif_drv;
-
 /*
  * This API provides the DPCI device ID in 'attr_value'.
  * The device ID shall be passed by GPP to the AIOP using CMDIF commands.
@@ -65,16 +59,17 @@ dpaa2_cmdif_enqueue_bufs(struct rte_rawdev *dev,
        struct qbman_fd fd;
        struct qbman_eq_desc eqdesc;
        struct qbman_swp *swp;
+       uint32_t retry_count = 0;
        int ret;
 
-       DPAA2_CMDIF_FUNC_TRACE();
-
        RTE_SET_USED(count);
 
        if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
                ret = dpaa2_affine_qbman_swp();
                if (ret) {
-                       DPAA2_CMDIF_ERR("Failure in affining portal\n");
+                       DPAA2_CMDIF_ERR(
+                               "Failed to allocate IO portal, tid: %d\n",
+                               rte_gettid());
                        return 0;
                }
        }
@@ -105,11 +100,15 @@ dpaa2_cmdif_enqueue_bufs(struct rte_rawdev *dev,
                ret = qbman_swp_enqueue_multiple(swp, &eqdesc, &fd, NULL, 1);
                if (ret < 0 && ret != -EBUSY)
                        DPAA2_CMDIF_ERR("Transmit failure with err: %d\n", ret);
-       } while (ret == -EBUSY);
+               retry_count++;
+       } while ((ret == -EBUSY) && (retry_count < DPAA2_MAX_TX_RETRY_COUNT));
+
+       if (ret < 0)
+               return ret;
 
        DPAA2_CMDIF_DP_DEBUG("Successfully transmitted a packet\n");
 
-       return 0;
+       return 1;
 }
 
 static int
@@ -128,14 +127,14 @@ dpaa2_cmdif_dequeue_bufs(struct rte_rawdev *dev,
        uint8_t status;
        int ret;
 
-       DPAA2_CMDIF_FUNC_TRACE();
-
        RTE_SET_USED(count);
 
        if (unlikely(!DPAA2_PER_LCORE_DPIO)) {
                ret = dpaa2_affine_qbman_swp();
                if (ret) {
-                       DPAA2_CMDIF_ERR("Failure in affining portal\n");
+                       DPAA2_CMDIF_ERR(
+                               "Failed to allocate IO portal, tid: %d\n",
+                               rte_gettid());
                        return 0;
                }
        }
@@ -211,7 +210,6 @@ dpaa2_cmdif_create(const char *name,
 
        rawdev->dev_ops = &dpaa2_cmdif_ops;
        rawdev->device = &vdev->device;
-       rawdev->driver_name = vdev->device.driver->name;
 
        /* For secondary processes, the primary has done all the work */
        if (rte_eal_process_type() != RTE_PROC_PRIMARY)
@@ -274,6 +272,8 @@ dpaa2_cmdif_remove(struct rte_vdev_device *vdev)
        int ret;
 
        name = rte_vdev_device_name(vdev);
+       if (name == NULL)
+               return -1;
 
        DPAA2_CMDIF_INFO("Closing %s on NUMA node %d", name, rte_socket_id());
 
@@ -288,10 +288,4 @@ static struct rte_vdev_driver dpaa2_cmdif_drv = {
 };
 
 RTE_PMD_REGISTER_VDEV(DPAA2_CMDIF_PMD_NAME, dpaa2_cmdif_drv);
-
-RTE_INIT(dpaa2_cmdif_init_log)
-{
-       dpaa2_cmdif_logtype = rte_log_register("pmd.raw.dpaa2.cmdif");
-       if (dpaa2_cmdif_logtype >= 0)
-               rte_log_set_level(dpaa2_cmdif_logtype, RTE_LOG_INFO);
-}
+RTE_LOG_REGISTER(dpaa2_cmdif_logtype, pmd.raw.dpaa2.cmdif, INFO);