Re: [ovs-dev] [PATCH ovn v2 0/3] northd: Optimize parsing of LSP addresses.

2023-03-03 Thread Dumitru Ceara
On 3/2/23 15:50, Mark Michelson wrote: > On 3/2/23 09:45, Simon Horman wrote: >> On Thu, Mar 02, 2023 at 02:14:24PM +0100, Dumitru Ceara wrote: >>> On 3/2/23 14:11, Ilya Maximets wrote: This patch set optimizes usage of string operations and avoids parsing same LSP addresses multiple

Re: [ovs-dev] [PATCH ovn v2 0/3] northd: Optimize parsing of LSP addresses.

2023-03-02 Thread Mark Michelson
On 3/2/23 09:45, Simon Horman wrote: On Thu, Mar 02, 2023 at 02:14:24PM +0100, Dumitru Ceara wrote: On 3/2/23 14:11, Ilya Maximets wrote: This patch set optimizes usage of string operations and avoids parsing same LSP addresses multiple times. Performance tests with ovn-heater show 5-10%

Re: [ovs-dev] [PATCH ovn v2 0/3] northd: Optimize parsing of LSP addresses.

2023-03-02 Thread Simon Horman
On Thu, Mar 02, 2023 at 02:14:24PM +0100, Dumitru Ceara wrote: > On 3/2/23 14:11, Ilya Maximets wrote: > > This patch set optimizes usage of string operations and avoids parsing > > same LSP addresses multiple times. > > > > Performance tests with ovn-heater show 5-10% improvement in high-scale >

Re: [ovs-dev] [PATCH ovn v2 0/3] northd: Optimize parsing of LSP addresses.

2023-03-02 Thread Dumitru Ceara
On 3/2/23 14:11, Ilya Maximets wrote: > This patch set optimizes usage of string operations and avoids parsing > same LSP addresses multiple times. > > Performance tests with ovn-heater show 5-10% improvement in high-scale > density-light scenarios. > > Version 2: > - Reduced code duplication

[ovs-dev] [PATCH ovn v2 0/3] northd: Optimize parsing of LSP addresses.

2023-03-02 Thread Ilya Maximets
This patch set optimizes usage of string operations and avoids parsing same LSP addresses multiple times. Performance tests with ovn-heater show 5-10% improvement in high-scale density-light scenarios. Version 2: - Reduced code duplication in is_dynamic_lsp_address(). [Mark] Ilya Maximets