} fformat (stdout, "vec_len (tp) is %d\n", vec_len (tp)); next = ~0; do { next = pool_next_index (tp, next); fformat (stdout, "next index %d\n", next); } while (next != ~0); /* *INDENT-OFF* */ pool_foreach (junk, tp) { int is_free; is_free = pool_is_free_index (tp, junk - tp); if (is_free == 0) { if (i == 1 || i == 65) clib_warning ("oops, free index %d reported busy", i); } else { if (i != 1 && i != 65) clib_warning ("oops, busy index %d reported free", i); } } /* *INDENT-ON* */ return 0; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */