Re: [ovs-dev] [PATCH ovn v3] controller: Don't artificially limit group and meter IDs to 16bit.

2023-10-31 Thread Dumitru Ceara
On 10/31/23 15:11, Ilya Maximets wrote: > On 10/26/23 13:37, Dumitru Ceara wrote: >> OVS actually supports way more. Detect the real number of groups and >> meters instead. To avoid preallocating huge bitmaps for the IDs, >> switch to id-pool instead (as suggested by Ilya). >> >> Reported-at: http

Re: [ovs-dev] [PATCH ovn v3] controller: Don't artificially limit group and meter IDs to 16bit.

2023-10-31 Thread Ilya Maximets
On 10/26/23 13:37, Dumitru Ceara wrote: > OVS actually supports way more. Detect the real number of groups and > meters instead. To avoid preallocating huge bitmaps for the IDs, > switch to id-pool instead (as suggested by Ilya). > > Reported-at: https://issues.redhat.com/browse/FDP-70 > Suggeste

Re: [ovs-dev] [PATCH ovn v3] controller: Don't artificially limit group and meter IDs to 16bit.

2023-10-30 Thread Dumitru Ceara
On 10/27/23 17:57, Numan Siddique wrote: > On Thu, Oct 26, 2023 at 7:37 AM Dumitru Ceara wrote: >> >> OVS actually supports way more. Detect the real number of groups and >> meters instead. To avoid preallocating huge bitmaps for the IDs, >> switch to id-pool instead (as suggested by Ilya). >> >>

Re: [ovs-dev] [PATCH ovn v3] controller: Don't artificially limit group and meter IDs to 16bit.

2023-10-27 Thread Numan Siddique
On Thu, Oct 26, 2023 at 7:37 AM Dumitru Ceara wrote: > > OVS actually supports way more. Detect the real number of groups and > meters instead. To avoid preallocating huge bitmaps for the IDs, > switch to id-pool instead (as suggested by Ilya). > > Reported-at: https://issues.redhat.com/browse/FD

[ovs-dev] [PATCH ovn v3] controller: Don't artificially limit group and meter IDs to 16bit.

2023-10-26 Thread Dumitru Ceara
OVS actually supports way more. Detect the real number of groups and meters instead. To avoid preallocating huge bitmaps for the IDs, switch to id-pool instead (as suggested by Ilya). Reported-at: https://issues.redhat.com/browse/FDP-70 Suggested-by: Ilya Maximets Signed-off-by: Dumitru Ceara -