Re: [ovs-dev] [PATCH v6 4/6] datapath: Minimize ovs_flow_cmd_del critical section.

2014-04-01 Thread Pravin Shelar
On Mon, Mar 31, 2014 at 11:18 AM, Jarno Rajahalme wrote: > ovs_flow_cmd_del() now allocates reply (if needed) after the flow has > already been removed from the flow table. If the reply allocation > fails, a netlink error is signaled with netlink_set_err(), as is > already done in ovs_flow_cmd_ne

[ovs-dev] [PATCH v6 4/6] datapath: Minimize ovs_flow_cmd_del critical section.

2014-03-31 Thread Jarno Rajahalme
ovs_flow_cmd_del() now allocates reply (if needed) after the flow has already been removed from the flow table. If the reply allocation fails, a netlink error is signaled with netlink_set_err(), as is already done in ovs_flow_cmd_new_or_set() in the similar situation. Signed-off-by: Jarno Rajahal