[dpdk-dev] [PATCH 2/2] net/mvpp2: check meter packet mode
Li Zhang
lizh at nvidia.com
Thu Apr 8 04:32:19 CEST 2021
Hi Cristian
> -----Original Message-----
> From: Dumitrescu, Cristian <cristian.dumitrescu at intel.com>
> Sent: Thursday, April 8, 2021 4:14 AM
> To: Li Zhang <lizh at nvidia.com>; dekelp at nvidia.com; Ori Kam
> <orika at nvidia.com>; Slava Ovsiienko <viacheslavo at nvidia.com>; Matan
> Azrad <matan at nvidia.com>; Shahaf Shuler <shahafs at nvidia.com>;
> lironh at marvell.com
> Cc: dev at dpdk.org; NBU-Contact-Thomas Monjalon <thomas at monjalon.net>;
> Raslan Darawsheh <rasland at nvidia.com>; Roni Bar Yanai
> <roniba at nvidia.com>
> Subject: RE: [PATCH 2/2] net/mvpp2: check meter packet mode
>
> External email: Use caution opening links or attachments
>
>
> > -----Original Message-----
> > From: Li Zhang <lizh at nvidia.com>
> > Sent: Thursday, April 1, 2021 7:16 AM
> > To: dekelp at nvidia.com; orika at nvidia.com; viacheslavo at nvidia.com;
> > matan at nvidia.com; shahafs at nvidia.com; Dumitrescu, Cristian
> > <cristian.dumitrescu at intel.com>; lironh at marvell.com
> > Cc: dev at dpdk.org; thomas at monjalon.net; rasland at nvidia.com;
> > roniba at nvidia.com
> > Subject: [PATCH 2/2] net/mvpp2: 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 <lizh at nvidia.com>
> > ---
> > 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..055be6f6b1 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_UNSPECIFIED,
>
> Can you please add a new error type for this specific error case, i.e.
> RTE_MTR_ERROR_TYPE_METER_PROFILE_PACKET_MODE.
>
Thanks, I will add it in V2 patch.
> > + 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
More information about the dev
mailing list