On Fri, May 13, 2016 at 11:58:43AM -0700, William Tu wrote:
> Fix two errors reported by test 2026: ovn -- 3 HVs, 1 LS, 3 lports/HV.
> 1. Conditional jump or move depends on uninitialised value(s)
> physical_run (physical.c:366)
> main (ovn-controller.c:382)
> 2. Use of uninitialised value of size 8
> bitmap_set1 (bitmap.h:97)
> update_ct_zones (binding.c:115)
> binding_run (binding.c:228)
> main (ovn-controller.c:362)
>
> Signed-off-by: William Tu <[email protected]>
Thanks, I applied this, but I changed:
> + memset(ct_zone_bitmap, 0x0,
> + BITMAP_N_LONGS(MAX_CT_ZONES) * sizeof(unsigned long));
to the simpler
memset(ct_zone_bitmap, 0, sizeof ct_zone_bitmap);
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev