Re: [ovs-dev] [PATCH 7/7] lib/dpif-netdev: Integrate megaflow classifier.

2014-10-06 Thread Ben Pfaff
On Wed, Oct 01, 2014 at 04:02:37PM -0700, Jarno Rajahalme wrote: > flow inserts and removals are simplified: > > - No need for classifier internal mutex, as dpif-netdev already has a > 'flow_mutex' > - Number of memory allocations/frees can be halved > > Lookup code path is a bit more effcient

[ovs-dev] [PATCH 7/7] lib/dpif-netdev: Integrate megaflow classifier.

2014-10-01 Thread Jarno Rajahalme
flow inserts and removals are simplified: - No need for classifier internal mutex, as dpif-netdev already has a 'flow_mutex' - Number of memory allocations/frees can be halved Lookup code path is a bit more effcient as well, as we can rely on netdev_flow_key always having inline data. Signed-o