Re: [ovs-dev] [PATCH] datapath-windows: Don't assert for unknown actions

2015-12-08 Thread Ben Pfaff
Thanks Sairam and Nithin, I applied this to master. On Tue, Dec 01, 2015 at 01:06:15AM +, Sairam Venugopal wrote: > Thanks for the patch. > > Acked-by: Sairam Venugopal > > > > On 11/25/15, 12:32 PM, "Nithin Raju" wrote: > > >On Hyper-V, we currently don't validate a flow to see if data

Re: [ovs-dev] [PATCH] datapath-windows: Don't assert for unknown actions

2015-11-30 Thread Sairam Venugopal
Thanks for the patch. Acked-by: Sairam Venugopal On 11/25/15, 12:32 PM, "Nithin Raju" wrote: >On Hyper-V, we currently don't validate a flow to see if datapath can >indeed execute all the actions specified or not. While support for it >gets implemented, an ASSERT seems too strong. I'm workin

[ovs-dev] [PATCH] datapath-windows: Don't assert for unknown actions

2015-11-25 Thread Nithin Raju
On Hyper-V, we currently don't validate a flow to see if datapath can indeed execute all the actions specified or not. While support for it gets implemented, an ASSERT seems too strong. I'm working on the support for actions validation. Here's a workaround in the meantime to help debugging. Signed