Re: [ovs-dev] [PATCH] dpif-provider: Get rid of redundant operations.

2014-08-12 Thread Ben Pfaff
On Thu, Aug 07, 2014 at 02:25:42PM +1200, Joe Stringer wrote: > On 16 July 2014 11:09, Ben Pfaff wrote: > > > The dpif provider 'operate' call duplicates all of the features available > > from the 'flow_put', 'flow_del', and 'execute' calls, yielding redundant > > code in providers that support b

Re: [ovs-dev] [PATCH] dpif-provider: Get rid of redundant operations.

2014-08-06 Thread Joe Stringer
On 16 July 2014 11:09, Ben Pfaff wrote: > The dpif provider 'operate' call duplicates all of the features available > from the 'flow_put', 'flow_del', and 'execute' calls, yielding redundant > code in providers that support both mechanisms. This change drops the > latter calls in favor of making

Re: [ovs-dev] [PATCH] dpif-provider: Get rid of redundant operations.

2014-08-04 Thread Ben Pfaff
On Tue, Jul 15, 2014 at 04:09:45PM -0700, Ben Pfaff wrote: > The dpif provider 'operate' call duplicates all of the features available > from the 'flow_put', 'flow_del', and 'execute' calls, yielding redundant > code in providers that support both mechanisms. This change drops the > latter calls i

[ovs-dev] [PATCH] dpif-provider: Get rid of redundant operations.

2014-07-15 Thread Ben Pfaff
The dpif provider 'operate' call duplicates all of the features available from the 'flow_put', 'flow_del', and 'execute' calls, yielding redundant code in providers that support both mechanisms. This change drops the latter calls in favor of making every dpif provider support 'operate'. The result