On Wed, Nov 05, 2014 at 02:24:58PM +0000, Ederval Pablo Ferreira da Cruz wrote: > Hi flavio..... > > yeah....I include bitmap.h in the flow.c file....That's why I dont understand > such error.... > > If you have some idea.. > > Thanks for the help
Works for me with this small patch. diff --git a/lib/flow.c b/lib/flow.c index a81dca4..e6e69c5 100644 --- a/lib/flow.c +++ b/lib/flow.c @@ -38,10 +38,19 @@ #include "odp-util.h" #include "random.h" #include "unaligned.h" +#include "bitmap.h" COVERAGE_DEFINE(flow_extract); COVERAGE_DEFINE(miniflow_malloc); +unsigned long *wrapper(void); +unsigned long * +wrapper(void) +{ + unsigned long *bm = bitmap_allocate(16); + return bm; +} + /* U32 indices for segmented flow classification. */ const uint8_t flow_segment_u32s[4] = { FLOW_SEGMENT_1_ENDS_AT / 4, _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev