Re: [ovs-dev] [PATCHv4 3/7] dpif: Separate local and shared flow dump state.

2014-02-27 Thread Ben Pfaff
On Thu, Feb 27, 2014 at 02:13:07PM -0800, Joe Stringer wrote: > This patch separates the structures for thread-local flow dump state > ("state") from the shared flow dump state ("iter") in dpif-linux and > dpif-netdev. Future patches will make use of this to allow multiple > threads to dump flows f

[ovs-dev] [PATCHv4 3/7] dpif: Separate local and shared flow dump state.

2014-02-27 Thread Joe Stringer
This patch separates the structures for thread-local flow dump state ("state") from the shared flow dump state ("iter") in dpif-linux and dpif-netdev. Future patches will make use of this to allow multiple threads to dump flows from the same flow dump operation. Signed-off-by: Joe Stringer --- v3