Acked-by: Liron Himi <[email protected]>
-----Original Message----- From: Li Zhang <[email protected]> Sent: Tuesday, 13 April 2021 06:51 To: [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; Liron Himi <[email protected]>; Jerin Jacob Kollanukkaran <[email protected]>; [email protected] Cc: [email protected]; [email protected]; [email protected]; [email protected] Subject: [EXT] [PATCH v4 4/4] net/mvpp2: check meter packet mode External Email ---------------------------------------------------------------------- Currently meter algorithms only supports bytes per second(BPS). Check packet_mode set to TRUE are rejected. Signed-off-by: Li Zhang <[email protected]> Acked-by: Matan Azrad <[email protected]> --- drivers/net/mvpp2/mrvl_mtr.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/net/mvpp2/mrvl_mtr.c b/drivers/net/mvpp2/mrvl_mtr.c index 2fa5cb43ad..c07ac95ddc 100644 --- a/drivers/net/mvpp2/mrvl_mtr.c +++ b/drivers/net/mvpp2/mrvl_mtr.c @@ -88,6 +88,12 @@ mrvl_meter_profile_add(struct rte_eth_dev *dev, uint32_t meter_profile_id, NULL, "Only srTCM RFC 2697 is supported\n"); + if (profile->packet_mode) + return -rte_mtr_error_set(error, EINVAL, + RTE_MTR_ERROR_TYPE_METER_PROFILE_PACKET_MODE, + NULL, + "Packet mode is not supported\n"); + prof = mrvl_mtr_profile_from_id(priv, meter_profile_id); if (prof) return -rte_mtr_error_set(error, EEXIST, -- 2.27.0

