Re: [ovs-dev] [PATCH v4] Support for match & set ICMPv6 reserved and options type fields

2019-02-03 Thread Vishal Deep Ajmera
> > Currently OVS supports all ARP protocol fields as OXM match fields to > implement the relevant ARP procedures for IPv4. This includes support > for matching copying and setting ARP fields. In IPv6 ARP has been > replaced by ICMPv6 neighbor discovery (ND) procedures, neighbor > advertisement

[ovs-dev] [patch v3] conntrack: Fix possibly uninitialized memory.

2019-02-03 Thread Darrell Ball
There are a few cases where padding may be undefined according to the C standard. Practically, it seems implementations don't have issue, but it is better to be safe. The code paths modified are not hot ones. Found by inspection. Signed-off-by: Darrell Ball --- v3: Removed an unnecessary

Re: [ovs-dev] [PATCH net-next V2 1/1] openvswitch: Declare ovs key structures using macros

2019-02-03 Thread Pravin Shelar
On Sun, Feb 3, 2019 at 1:12 AM Eli Britstein wrote: > > Declare ovs key structures using macros as a pre-step towards to > enable retrieving fields information, as a work done in proposed > commit in the OVS tree https://patchwork.ozlabs.org/patch/1023406/ > ("odp-util: Do not rewrite fields with

Re: [ovs-dev] [PATCH v2] lib/tc: Support optional tunnel id

2019-02-03 Thread Roi Dayan
On Fri, Feb 1, 2019 at 4:05 PM Simon Horman wrote: > > Thanks Roi, > > On Thu, 31 Jan 2019 at 15:52, Roi Dayan wrote: > > > > > > > On 31/01/2019 15:32, Roi Dayan wrote: > > > > > > On 31/01/2019 11:58, Simon Horman wrote: > > >> On Mon, Jan 21, 2019 at 05:32:37PM +0200, Adi Nissim wrote: > >

[ovs-dev] [PATCH net-next V2 1/1] openvswitch: Declare ovs key structures using macros

2019-02-03 Thread Eli Britstein
Declare ovs key structures using macros as a pre-step towards to enable retrieving fields information, as a work done in proposed commit in the OVS tree https://patchwork.ozlabs.org/patch/1023406/ ("odp-util: Do not rewrite fields with the same values as matched"), with no functional change.