From 37b445468e45b537621269fc1e375f26ca2100ee Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Mon, 27 Apr 2020 18:38:36 -0400 Subject: vppinfra: improve test coverage Bonus corner-case bugfix in bitmap.h, found during the exercise. Issue dates from 2001 or thereabouts. Please review this specific change carefully. lcov_post: filter system include directories and generated files in build-root Type: improvement Signed-off-by: Dave Barach Change-Id: Iaa0b63e9dc571dfe3d992197ac49ba4d93403c61 --- src/vppinfra/bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vppinfra') diff --git a/src/vppinfra/bitmap.h b/src/vppinfra/bitmap.h index e6b59d81cca..44411163975 100644 --- a/src/vppinfra/bitmap.h +++ b/src/vppinfra/bitmap.h @@ -730,7 +730,7 @@ clib_bitmap_next_clear (uword * ai, uword i) } /* no clear bit left in bitmap, return bit just beyond bitmap */ - return (i0 + 1) * BITS (ai[0]); + return (i0 * BITS (ai[0])) + 1; } return i; } -- cgit 1.2.3-korg