Re: [ovs-dev] [PATCH v2 1/2] datapath: Add support for OVS_FLOW_ATTR_PROBE.

2014-10-03 Thread Jarno Rajahalme
Pushed to master, Jarno On Sep 17, 2014, at 9:51 AM, Pravin Shelar wrote: > On Fri, Sep 12, 2014 at 11:24 AM, Jarno Rajahalme > wrote: >> This new flag is useful for suppressing error logging while probing >> for datapath features using flow commands. For backwards >> compatibility reasons

Re: [ovs-dev] [PATCH v2 1/2] datapath: Add support for OVS_FLOW_ATTR_PROBE.

2014-09-17 Thread Pravin Shelar
On Fri, Sep 12, 2014 at 11:24 AM, Jarno Rajahalme wrote: > This new flag is useful for suppressing error logging while probing > for datapath features using flow commands. For backwards > compatibility reasons the commands are executed normally, but error > logging is suppressed. > > Signed-off-b

[ovs-dev] [PATCH v2 1/2] datapath: Add support for OVS_FLOW_ATTR_PROBE.

2014-09-12 Thread Jarno Rajahalme
This new flag is useful for suppressing error logging while probing for datapath features using flow commands. For backwards compatibility reasons the commands are executed normally, but error logging is suppressed. Signed-off-by: Jarno Rajahalme --- v2: renamed SILENT as PROBE, added comments,