diff mbox series

[ovs-dev,60/62] dpif-netdev: modify max supported number of meter

Message ID 20201228092520.11807-61-taoyunxiang@cmss.chinamobile.com
State Not Applicable
Headers show
Series DPDK Offload API to test | expand

Commit Message

taoyunxiang Dec. 28, 2020, 9:25 a.m. UTC
From: Taoyunxiang <taoyunxiang@cmss.chinamobile.com>

Code Source From: Self Code

Description:
The max number is assigned by dpif_netdev_meter_get_features.
The max supported number in BSC card is 256.
So we need to modify the default max number
from 65536 to 256.
In ofproto-dpif.c, meter_set will verify max number by
id_pool_alloc_id.

Jira:  #[Optional]
市场项目编号(名称):[Optional]
---
 lib/dpif-netdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Tonghao Zhang Dec. 29, 2020, 2:28 a.m. UTC | #1
On Tue, Dec 29, 2020 at 2:13 AM Tao YunXiang
<taoyunxiang@cmss.chinamobile.com> wrote:
>
> From: Taoyunxiang <taoyunxiang@cmss.chinamobile.com>
>
> Code Source From: Self Code
>
> Description:
> The max number is assigned by dpif_netdev_meter_get_features.
> The max supported number in BSC card is 256.
> So we need to modify the default max number
> from 65536 to 256.
> In ofproto-dpif.c, meter_set will verify max number by
> id_pool_alloc_id.
>
> Jira:  #[Optional]
> 市场项目编号(名称):[Optional]
> ---
>  lib/dpif-netdev.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
> index cf89d6c..1f5fce5 100644
> --- a/lib/dpif-netdev.c
> +++ b/lib/dpif-netdev.c
> @@ -98,7 +98,8 @@ DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
>
>  /* Configuration parameters. */
>  enum { MAX_FLOWS = 65536 };     /* Maximum number of flows in flow table. */
> -enum { MAX_METERS = 65536 };    /* Maximum number of meters. */
> +enum { MAX_METERS = 256 };    /* Maximum number of meters.
> +                                 256 is the max supported number in Intel BSC card*/
No ack
why change 65536 --> 256. I guess 256 is too small

>  enum { MAX_BANDS = 8 };         /* Maximum number of bands / meter. */
>  enum { N_METER_LOCKS = 64 };    /* Maximum number of meters. */
>
> --
> 1.8.3.1
>
>
>
> _______________________________________________
> dev mailing list
> dev@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
Tonghao Zhang Dec. 29, 2020, 2:33 a.m. UTC | #2
On Tue, Dec 29, 2020 at 10:28 AM Tonghao Zhang <xiangxia.m.yue@gmail.com> wrote:
>
> On Tue, Dec 29, 2020 at 2:13 AM Tao YunXiang
> <taoyunxiang@cmss.chinamobile.com> wrote:
> >
> > From: Taoyunxiang <taoyunxiang@cmss.chinamobile.com>
> >
> > Code Source From: Self Code
> >
> > Description:
> > The max number is assigned by dpif_netdev_meter_get_features.
> > The max supported number in BSC card is 256.
> > So we need to modify the default max number
> > from 65536 to 256.
> > In ofproto-dpif.c, meter_set will verify max number by
> > id_pool_alloc_id.
> >
> > Jira:  #[Optional]
> > 市场项目编号(名称):[Optional]
> > ---
> >  lib/dpif-netdev.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
> > index cf89d6c..1f5fce5 100644
> > --- a/lib/dpif-netdev.c
> > +++ b/lib/dpif-netdev.c
> > @@ -98,7 +98,8 @@ DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
> >
> >  /* Configuration parameters. */
> >  enum { MAX_FLOWS = 65536 };     /* Maximum number of flows in flow table. */
> > -enum { MAX_METERS = 65536 };    /* Maximum number of meters. */
> > +enum { MAX_METERS = 256 };    /* Maximum number of meters.
> > +                                 256 is the max supported number in Intel BSC card*/
> No ack
> why change 65536 --> 256. I guess 256 is too small
And some case, we should expand the meters
http://patchwork.ozlabs.org/project/openvswitch/list/?series=178840

> >  enum { MAX_BANDS = 8 };         /* Maximum number of bands / meter. */
> >  enum { N_METER_LOCKS = 64 };    /* Maximum number of meters. */
> >
> > --
> > 1.8.3.1
> >
> >
> >
> > _______________________________________________
> > dev mailing list
> > dev@openvswitch.org
> > https://mail.openvswitch.org/mailman/listinfo/ovs-dev
>
>
>
> --
> Best regards, Tonghao



--
Best regards, Tonghao
taoyunxiang Dec. 30, 2020, 7:34 a.m. UTC | #3
>On Tue, Dec 29, 2020 at 10:28 AM Tonghao Zhang <xiangxia.m.yue@gmail.com> wrote:
>>
>> On Tue, Dec 29, 2020 at 2:13 AM Tao YunXiang
>> <taoyunxiang@cmss.chinamobile.com> wrote:
>> >
>> > From: Taoyunxiang <taoyunxiang@cmss.chinamobile.com>
>> >
>> > Code Source From: Self Code
>> >
>> > Description:
>> > The max number is assigned by dpif_netdev_meter_get_features.
>> > The max supported number in BSC card is 256.
>> > So we need to modify the default max number
>> > from 65536 to 256.
>> > In ofproto-dpif.c, meter_set will verify max number by
>> > id_pool_alloc_id.
>> >
>> > Jira:  #[Optional]
>> > 市场项目编号(名称):[Optional]
>> > ---
>> >  lib/dpif-netdev.c | 3 ++-
>> >  1 file changed, 2 insertions(+), 1 deletion(-)
>> >
>> > diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
>> > index cf89d6c..1f5fce5 100644
>> > --- a/lib/dpif-netdev.c
>> > +++ b/lib/dpif-netdev.c
>> > @@ -98,7 +98,8 @@ DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
>> >
>> >  /* Configuration parameters. */
>> >  enum { MAX_FLOWS = 65536 };     /* Maximum number of flows in flow table. */
>> > -enum { MAX_METERS = 65536 };    /* Maximum number of meters. */
>> > +enum { MAX_METERS = 256 };    /* Maximum number of meters.
>> > +                                 256 is the max supported number in Intel BSC card*/
>> No ack
>> why change 65536 --> 256. I guess 256 is too small
>And some case, we should expand the meters
>http://patchwork.ozlabs.org/project/openvswitch/list/?series=178840
 
I see this summit ,it is nice.

We want to share meter config for different flows in HW.  So many flows coud use a specified meter config.
We designed the limit in HW. 

>
>> >  enum { MAX_BANDS = 8 };         /* Maximum number of bands / meter. */
>> >  enum { N_METER_LOCKS = 64 };    /* Maximum number of meters. */
>> >
>> > --
>> > 1.8.3.1
>> >
>> >
>> >
>> > _______________________________________________
>> > dev mailing list
>> > dev@openvswitch.org
>> > https://mail.openvswitch.org/mailman/listinfo/ovs-dev
>>
>>
>>
>> --
>> Best regards, Tonghao
>
>
>
>--
>Best regards, Tonghao
diff mbox series

Patch

diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
index cf89d6c..1f5fce5 100644
--- a/lib/dpif-netdev.c
+++ b/lib/dpif-netdev.c
@@ -98,7 +98,8 @@  DEFINE_STATIC_PER_THREAD_DATA(uint32_t, recirc_depth, 0)
 
 /* Configuration parameters. */
 enum { MAX_FLOWS = 65536 };     /* Maximum number of flows in flow table. */
-enum { MAX_METERS = 65536 };    /* Maximum number of meters. */
+enum { MAX_METERS = 256 };    /* Maximum number of meters.
+                                 256 is the max supported number in Intel BSC card*/
 enum { MAX_BANDS = 8 };         /* Maximum number of bands / meter. */
 enum { N_METER_LOCKS = 64 };    /* Maximum number of meters. */