Re: [ovs-dev] [PATCH] conntrack: Fix flush not flushing all elements.

2024-02-15 Thread Ilya Maximets
On 2/14/24 13:43, Xavier Simonart wrote: > When a ct element was cleaned, the cmap could be shrinked, potentially > causing some elements to be skipped in the flush iteration. > > Signed-off-by: Xavier Simonart > --- > lib/conntrack.c | 14 - > lib/conntrack.h | 1 +

Re: [ovs-dev] [PATCH] conntrack: Fix flush not flushing all elements.

2024-02-15 Thread Aaron Conole
Xavier Simonart writes: > When a ct element was cleaned, the cmap could be shrinked, potentially > causing some elements to be skipped in the flush iteration. > > Signed-off-by: Xavier Simonart > --- This only applies to netdev datapaths, so might be good to mention it in the commit message.

Re: [ovs-dev] [PATCH] conntrack: Fix flush not flushing all elements.

2024-02-15 Thread Simon Horman
On Wed, Feb 14, 2024 at 01:43:21PM +0100, Xavier Simonart wrote: > When a ct element was cleaned, the cmap could be shrinked, potentially > causing some elements to be skipped in the flush iteration. > > Signed-off-by: Xavier Simonart Thanks for the patch Xavier. Acked-by: Simon Horman

[ovs-dev] [PATCH] conntrack: Fix flush not flushing all elements.

2024-02-14 Thread Xavier Simonart
When a ct element was cleaned, the cmap could be shrinked, potentially causing some elements to be skipped in the flush iteration. Signed-off-by: Xavier Simonart --- lib/conntrack.c | 14 - lib/conntrack.h | 1 + tests/system-traffic.at | 45