Re: [ovs-dev] [PATCH] flow: fix compilation of MINIFLOW_ASSERT

2016-01-11 Thread Ben Pfaff
On Mon, Jan 11, 2016 at 02:00:25PM +0900, Simon Horman wrote: > Often MINIFLOW_ASSERT is a no-op and compilation of code that uses > it is optimised out. This patch fixes compilation errors that occur > when that is not the case: > > * FLOWMAP_MAX does not exist. Use MAP_MAP instead. > *

Re: [ovs-dev] [PATCH] flow: fix compilation of MINIFLOW_ASSERT

2016-01-11 Thread Jarno Rajahalme
Simon, Thanks for the fix. Pushed to master, Jarno > On Jan 10, 2016, at 9:00 PM, Simon Horman wrote: > > Often MINIFLOW_ASSERT is a no-op and compilation of code that uses > it is optimised out. This patch fixes compilation errors that occur > when that is not

[ovs-dev] [PATCH] flow: fix compilation of MINIFLOW_ASSERT

2016-01-10 Thread Simon Horman
Often MINIFLOW_ASSERT is a no-op and compilation of code that uses it is optimised out. This patch fixes compilation errors that occur when that is not the case: * FLOWMAP_MAX does not exist. Use MAP_MAP instead. * FLOWMAP_IS_SET does not exist. Use flowmap_is_set instead. Signed-off-by: Simon