Re: [ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action.

2021-06-16 Thread Ferriter, Cian
Hi Ian, Further responses are inline. > -Original Message- > From: Stokes, Ian > Sent: Wednesday 16 June 2021 13:47 > To: Ferriter, Cian ; ovs-dev@openvswitch.org; Van > Haaren, Harry ; > i.maxim...@ovn.org > Subject: RE: [ovs-dev] [v12 15/16] dpif-netdev: Opti

Re: [ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action.

2021-06-16 Thread Stokes, Ian
; > Cc: i.maxim...@ovn.org > > Subject: RE: [ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action. > > > > > From: Harry van Haaren > > > > > > This commit optimizes the output action, by enabling the compiler to > > > optimize

Re: [ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action.

2021-06-16 Thread Ferriter, Cian
Hi Ian, Thanks for the review. My responses are inline. > -Original Message- > From: Stokes, Ian > Sent: Tuesday 15 June 2021 18:04 > To: Ferriter, Cian ; ovs-dev@openvswitch.org; > Ferriter, Cian ; Van Haaren, Harry > > Cc: i.maxim...@ovn.org > Subject: RE: [o

Re: [ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action.

2021-06-15 Thread Stokes, Ian
> From: Harry van Haaren > > This commit optimizes the output action, by enabling the compiler to > optimize the code better through reducing code complexity. > > The core concept of this optimization is that the array-length checks > have already been performed above the copying code, so can

[ovs-dev] [v12 15/16] dpif-netdev: Optimize dp output action.

2021-05-17 Thread Cian Ferriter
From: Harry van Haaren This commit optimizes the output action, by enabling the compiler to optimize the code better through reducing code complexity. The core concept of this optimization is that the array-length checks have already been performed above the copying code, so can be removed.