[ovs-dev] [PATCH ovn v7 2/2] controller, northd: Add support for CT zone limits.

2024-07-28 Thread Ales Musil
Add support for limiting the CT zone usage per Ls, LR or LSP. When the limit is configured on logical switch it will also implicitly set limits for all ports in that logical switch. The port configuration can be overwritten individually and has priority over the whole logical switch configuration.

[ovs-dev] [PATCH ovn v7 1/2] controller: Prepare structure around CT zone limiting.

2024-07-28 Thread Ales Musil
In order to be able to store CT limits for specified zone, store the zone inside separate struct instead of simap. This allows to add the addition of limit without changing the whole infrastructure again. This is a preparation step for the CT zone limits. Acked-by: Mark Michelson Signed-off-by:

[ovs-dev] [PATCH ovn v7 0/2] Add ability to limit CT entries per LS/LR/LSP

2024-07-28 Thread Ales Musil
Add ability that allows to set CT limits per logical switch, logical router or logical switch port. When the limit is applied to logical switch it will be implicitly set for all logical ports in the logical switch. This can be overwritten individually per port. Ales Musil (2): controller: Prepar

Re: [ovs-dev] [PATCH ovn v2] northd: Add change handler for FDB updates.

2024-07-28 Thread Ales Musil
On Mon, Jul 29, 2024 at 8:16 AM Naveen Yerramneni < naveen.yerramn...@nutanix.com> wrote: > > > > On 29 Jul 2024, at 11:22 AM, Ales Musil wrote: > > > > CAUTION: External Email > > > > > > On Fri, Jul 26, 2024 at 9:08 PM Naveen Yerramneni < > naveen.yerramn...@nutanix.com> wrote: > > This change

Re: [ovs-dev] [PATCH ovn v2] northd: Add change handler for FDB updates.

2024-07-28 Thread Naveen Yerramneni
> On 29 Jul 2024, at 11:22 AM, Ales Musil wrote: > > CAUTION: External Email > > > On Fri, Jul 26, 2024 at 9:08 PM Naveen Yerramneni > wrote: > This change avoids northd full recompute for FDB updates. > Also, fixed incremental processing for port deletion to > delete all fdb entries associ

Re: [ovs-dev] [PATCH ovn v2] northd: Add change handler for FDB updates.

2024-07-28 Thread Ales Musil
On Fri, Jul 26, 2024 at 9:08 PM Naveen Yerramneni < naveen.yerramn...@nutanix.com> wrote: > This change avoids northd full recompute for FDB updates. > Also, fixed incremental processing for port deletion to > delete all fdb entries associated to a port. > > Signed-off-by: Naveen Yerramneni > ---

[ovs-dev] [PATCH ovn] ci: Bump the Cirrus CI Ubuntu image.

2024-07-28 Thread Ales Musil
The Ubuntu 23.10 became EOL on July 11, 2024. Use the LTS 24.04 instead. Signed-off-by: Ales Musil --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 9b35d4cfb..14a54a0fe 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,6 +1,6 @@

[ovs-dev] [PATCH ovn v2] tests: Add system tests for MAC_Binding.

2024-07-28 Thread Naveen Yerramneni
1. Test to validate traffic that needs ARP resolution when SB is disconnected. 2. Test to validate MAC binding buffer limit when SB is disconnected. Signed-off-by: Naveen Yerramneni --- v2: - Use timeout for ping command. - Capture ovn counters file. --- tests/system-ovn.at | 224 +++

Re: [ovs-dev] [PATCH ovn v1] Support selection fields for ECMP routes

2024-07-28 Thread 0-day Robot
References: <20240729050554.202163-1-karthi...@nutanix.com> Bleep bloop. Greetings Karthik Chandrashekar, I am a robot and I have tried out your patch. Thanks for your contribution. I encountered some error that I wasn't expecting. See the details below. checkpatch: WARNING: The subject s

[ovs-dev] [PATCH ovn v1] Support selection fields for ECMP routes

2024-07-28 Thread karthik . c
From: Karthik Chandrashekar This patch adds the ability to specify a custom set of packet headers for hash computation for ECMP routes similar to the support that was added for LB in 5af304e7478adcf5ac50ed41e96a55bebebff3e8 ECMP routes by default use dp_hash as a selection_method for OVS flows.