> -----Original Message-----
> From: Li Zhang <[email protected]>
> Sent: Saturday, April 10, 2021 8:25 AM
> To: [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; Dumitrescu, Cristian
> <[email protected]>; [email protected]; Singh, Jasvinder
> <[email protected]>
> Cc: [email protected]; [email protected]; [email protected];
> [email protected]
> Subject: [PATCH v3 3/4] net/softnic: check meter packet mode
>
> 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/softnic/rte_eth_softnic_meter.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/net/softnic/rte_eth_softnic_meter.c
> b/drivers/net/softnic/rte_eth_softnic_meter.c
> index 2a05a85cdb..046e629f17 100644
> --- a/drivers/net/softnic/rte_eth_softnic_meter.c
> +++ b/drivers/net/softnic/rte_eth_softnic_meter.c
> @@ -107,6 +107,14 @@ meter_profile_check(struct rte_eth_dev *dev,
> NULL,
> "Metering alg not supported");
>
> + /* Not support packet mode, just support byte mode. */
> + if (profile->packet_mode)
> + return -rte_mtr_error_set(error,
> + EINVAL,
> +
> RTE_MTR_ERROR_TYPE_METER_PROFILE_PACKET_MODE,
> + NULL,
> + "Meter packet mode not supported");
> +
> return 0;
> }
>
> --
> 2.21.0
Acked-by: Cristian Dumitrescu <[email protected]>