net/mvpp2: skip QoS init if not requested

Skip qos init if not requested

Signed-off-by: Liron Himi <lironh@marvell.com>
This commit is contained in:
Liron Himi 2021-01-27 18:09:35 +02:00 committed by Ferruh Yigit
parent cb932ddbe3
commit 55e429ac7a

View File

@ -593,7 +593,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) */
@ -909,6 +909,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;