Re: [ovs-dev] [PATCH ovn] controller: Fix ofctrl memory usage underflow.

2024-03-26 Thread Han Zhou
On Wed, Mar 20, 2024 at 12:48 PM Mark Michelson wrote: > > Thanks Ales, looks good to me. > > Acked-by: Mark Michelson > Thanks Ales and Mark. I applied to main and backported down to branch-23.06. Han > On 3/19/24 11:57, Ales Musil wrote: > > The memory usage would be increased for size of

Re: [ovs-dev] [PATCH ovn] controller: Fix ofctrl memory usage underflow.

2024-03-20 Thread Mark Michelson
Thanks Ales, looks good to me. Acked-by: Mark Michelson On 3/19/24 11:57, Ales Musil wrote: The memory usage would be increased for size of sb_addrset_ref struct, but decreased for the size of the struct + the name. That would slowly lead to underflows in some cases. Reported-at:

[ovs-dev] [PATCH ovn] controller: Fix ofctrl memory usage underflow.

2024-03-19 Thread Ales Musil
The memory usage would be increased for size of sb_addrset_ref struct, but decreased for the size of the struct + the name. That would slowly lead to underflows in some cases. Reported-at: https://issues.redhat.com/browse/FDP-507 Signed-off-by: Ales Musil --- controller/ofctrl.c | 10 --