From: Liron Himi <lir...@marvell.com>

skip qos init if not requested

Signed-off-by: Liron Himi <lir...@marvell.com>
Reviewed-by: Liron Himi <lir...@marvell.com>
---
 drivers/net/mvpp2/mrvl_qos.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/net/mvpp2/mrvl_qos.c b/drivers/net/mvpp2/mrvl_qos.c
index 18cf470dd..d8f6dd5c6 100644
--- a/drivers/net/mvpp2/mrvl_qos.c
+++ b/drivers/net/mvpp2/mrvl_qos.c
@@ -617,7 +617,7 @@ mrvl_get_cfg(const char *key __rte_unused, const char 
*path, void *extra_args)
                        }
                } else {
                        (*cfg)->port[n].mapping_priority =
-                               PP2_CLS_QOS_TBL_VLAN_IP_PRI;
+                               PP2_CLS_QOS_TBL_NONE;
                }
 
                /* Parse policer configuration (if any) */
@@ -933,6 +933,9 @@ mrvl_start_qos_mapping(struct mrvl_priv *priv)
 {
        size_t i;
 
+       if (priv->qos_tbl_params.type == PP2_CLS_QOS_TBL_NONE)
+               return 0;
+
        if (priv->ppio == NULL) {
                MRVL_LOG(ERR, "ppio must not be NULL here!");
                return -1;
-- 
2.28.0

Reply via email to